Viewing 15 posts - 991 through 1,005 (of 2,486 total)
You could also try using a UDL file and select the OLE/DB driver for SQL instead of the ODBC driver.
July 19, 2005 at 7:54 pm
Dug these up from the MS support site.
http://support.microsoft.com/?scid=kb;en-us;138541&spid=2852&sid=332
http://support.microsoft.com/?scid=kb;en-us;827422&spid=2852&sid=332
July 19, 2005 at 7:52 pm
Sorry, got side tracked and forgot this.
Can you connect if you use the IP address of the server?
July 19, 2005 at 7:59 am
Peter Edmunds, actually the sp_ prefix does not necessarily indicate a System Procedure. It just so happens that MS used that prefix...
July 18, 2005 at 10:07 pm
The big problem you are going to run into by executing the DTS packages from the web page is that they will actually execute on the webserver itself. Also, you'll...
July 18, 2005 at 9:44 pm
Even if transformations are not required use the DTS BULK INSERT task, it's faster than BCP. For even better performance use the T-SQL BULK INSERT command in a stored procedure.
We...
July 18, 2005 at 4:28 pm
July 17, 2005 at 8:44 pm
Personally, I'd just set the properties of the connection to point to the appropriate server and database. Then you don't need to fiddle with dynamic SQL.
If you have to go...
July 17, 2005 at 6:19 pm
Ok, so far we know,
a) you have a stored procedure that takes some parameters and inserts the data into a table
b) DTS is somehow involved as you're asking about "parametrised...
July 17, 2005 at 6:10 pm
Are you trying to connect with an ODBC DSN, or using a connection string? What settings/string are you using?
I have a niggling thought that the problem could be related to...
July 16, 2005 at 1:49 am
From the error it seems your trying to connect to the SQL Server using TCP.
On the server you're trying to connect to, run the Server Network Utility and make sure...
July 15, 2005 at 6:48 am
Look up "Triggers" in your local copy of Books Online, or you can also view the information here,
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/architec/8_ar_da_1tup.asp
July 15, 2005 at 12:44 am
And what does this return?
declare @x varchar(12) SET @x ='11 Mar 2003'select taskid,taskname,entrydt from task where entrydt = cast(@x as datetime)
July 14, 2005 at 11:13 pm
Viewing 15 posts - 991 through 1,005 (of 2,486 total)