Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by steph2004

  1. steph2004

    Cannot initialize the data source for linked server

    Of course I did, Google first, forums next! I saw these results but it's not working for me since I'm not using ODBC. Here's my connection string (C#) : connection = new SqlConnection(); connection.ConnectionString = "Server=1.2.3.4;Database=testDB;User...
  2. steph2004

    Cannot initialize the data source for linked server

    Hi, I have this error when I run a stored procedure calling a MSSQL linked server : System.Data.SqlClient.SqlException: Cannot initialize the data source object of OLE DB provider "MSDASQL" for linked server "linkedServerABC" The problem is that when I run the exact stored proc in SQL Server...
  3. steph2004

    Tricky SELECT problem with WHERE and HAVING

    Yeah, it might do the job! Thanks a lot! Stephane
  4. steph2004

    Tricky SELECT problem with WHERE and HAVING

    Hi, I'm having problem bulding the right SQL select with tricky conditions. For example, let's say I want the number of objets by date where (object name is 'something' and the number of command with this object greater than 5) OR (object name is 'something else' and the number of command with...
  5. steph2004

    How to Script windows user from different domain as SQL user?

    Hi, I want to make an installation script which is scripting the windows ASPNET built-in user to access the database created in the script. The problem is that if I create the script with my SQL Server, the user will be scripted as MYDOMAIN\ASPNET. How can I script it without being assigned...
  6. steph2004

    window.onfocus problem with IE

    Hi, Thanks for your time, It helped me. I resolved it by using the document.onclick event which is giving the focus to the window. Stephane
  7. steph2004

    window.onfocus problem with IE

    Hi, I'm having a javascript calling two functions when the focus and blur event occur. These are set like this: window.onfocus = setFocusOn; window.onblur = setFocusOff; My script is in a .js file and I refer to it via the <script src="functions.js"> tag. My problem is that if I am on the...

Part and Inventory Search

Back
Top