Viewing 12 posts - 1 through 12 (of 12 total)
January 22, 2007 at 5:29 am
I don't know if he solved the problem, but I would try OpenQuery such as;
DBCC TRACEON(8765)
select *...
November 16, 2006 at 10:52 am
Depending on the task, table locks could slow this down slightly. Otherwise running parallel tasks is usually a good way to take advantage of multiprossors. It is important to have a...
October 12, 2006 at 5:20 am
You should be able to do this with a sql server job. Just schedule it to run a stored procedure at Midnight to update your table.
March 28, 2006 at 5:09 am
I have not done this recently but I believe that I had to install the sybase ODBC driver on my SQL Server machine. Some information might be helpful at:
January 3, 2006 at 11:18 am
Thanks for the replys.
This is what I am trying to do. This data is generated by a manufacturing line we received from Germany. The line can build up to...
December 21, 2005 at 7:51 am
I was working on a similar problem and that worked for me. Thanks.
October 5, 2005 at 6:26 am
Because the copy jog is failing, make sure that you are backing up the log to a share that the secondary has rights to. You should be able to browse...
April 15, 2004 at 6:12 am
In my experience, the prepare statement is not used by multiple connections or applications. When a prepare was sent to the server, a Handle was assigned to the application and...
March 22, 2004 at 9:14 am
We are doing it on two different domains without trusted relationship using SQL Server authentication.
connecstring = "driver={SQLServer};
server=000.000.000.000\instance_name;uid=sqluser;
pwd=sqlpassword;database=userdatabase"
March 17, 2004 at 12:13 pm
Have you tryed using IPAddress\SQLName in your connection string? This should work as long as you are set up for Windows and SQL Server authentication.
March 16, 2004 at 11:04 am
Viewing 12 posts - 1 through 12 (of 12 total)