Viewing 9 posts - 16 through 25 (of 25 total)
Thanks for showing how one could do this programatically.
An alternative approach that I find useful is here: http://www.sqldts.com/default.aspx?204
Cheers.
dj
May 5, 2006 at 11:36 am
DTS doesn't seem able to use parameters ('?') and SQL local variables in the same batch. I tried something very much like your suggestion; when I tried using parameters to...
February 3, 2006 at 9:33 am
One would think that would work, wouldn't one?
Unfortunately, DTS doesn't see things that way. I tried this:
INSERT INTO tblDataload_Price_Load_Log (Division_Code, Price_Level )
VALUES (?, ?)
SELECT (@@IDENTITY) As LoadID
I can see...
February 2, 2006 at 8:19 am
Training, yes. Travel, no.
Sadly, travel (lodging, food, etc) can easily cost more than the actual training.
Bit of a conundrum. Got an answer?
January 25, 2006 at 6:10 am
Gila Monster:
I am in the same position (I even have both study guides too!) and I'm still trying to decide myself.
I have my MCSD (not .Net) as I started as a...
October 27, 2005 at 10:50 am
Thanks -
I thought of that, but this can only be applied to one table at a given time.
I may have to fall back to this approach, but I was...
August 1, 2003 at 7:33 am
Ok, I got it.
My connect string had the SQL Server name, but not the host server name. In my case they are the same (probably not a good idea)
so...
January 1, 2002 at 1:10 pm
The Authentication was set to 'Windows only', the startup service account set to 'System account', which is how I installed SS2K (Developer Edition).
I tried changing the Authentication mode to SQL...
December 31, 2001 at 4:09 pm
Thanks for responding -
I copied the connect string from another (working) DTS pkg on a different machine/network. Here's the connect string:
strConnect = "Provider=sqloledb;Data Source=myserver;Initial Catalog=mydatabase;User Id=sa;Password=;"
When...
December 31, 2001 at 10:12 am
Viewing 9 posts - 16 through 25 (of 25 total)