Viewing 15 posts - 1,516 through 1,530 (of 2,486 total)
If you have package logging enabled, there is a wealth of information to be gained in the sysdtspackagelog, sysdtssteplog and sysdtstasklog tables in the msdb database.
February 17, 2005 at 4:50 pm
It's to do with ANSI compliance. Take a look at this article,
http://vyaskn.tripod.com/differences_between_set_and_select.htm
February 16, 2005 at 11:45 pm
Rather than copying and pasting a whole lot of links, go to the search for this site
http://www.sqlservercentral.com/search/turbo.asp
Enter "Business Days" and click all three check boxes. Peruse the results till you...
February 16, 2005 at 8:52 pm
As far as I know there are no timezone conversions in storing and retrieving datetime data in SQL Server. What a good client application will do is use the local...
February 16, 2005 at 6:17 pm
What account do the SQL Server and SQL Agent services use?
February 16, 2005 at 6:11 pm
Check the connections in the DTS package. How are they connecting to SQL Server? Are they using the same credentials as the owner of the job?
February 16, 2005 at 6:01 pm
NT Authentication is used for connecting to the server. Once you have successfully connected to the server, the permissions from there on are assigned by SQL Server.
This is the distinction...
February 16, 2005 at 5:57 pm
Hmmm ... what are your stored procedures doing that the require specific permissions on the tables? Usually all you need to do is grant EXECUTE permission to the stored procedure....
February 16, 2005 at 5:03 pm
Use SELECT instead of SET.
eg: SELECT @AcctNo = 1, @LName = 1, @AuthPerson = 1, @PUCo = 1
February 16, 2005 at 5:01 pm
You have two options.
Option 1
If you absolutely have to have the information in Excel because of formatting or data placement requirements. What you do is create an empty Excel file...
February 16, 2005 at 4:26 pm
Apart from any issues with the client application possibly hanging and causing a server restart (not much of an issue on your workstation, but a much larger problem when you...
February 16, 2005 at 3:55 pm
If you added the comment as a Text Annotation, don't rely on it staying there. DTS is notrious for losing Text Annotations and the layout of the tasks.
February 16, 2005 at 2:29 pm
You don't have
"...get around it by using a substitute statement, mapping my paramaters and then putting my original SQL back in via a disconnected edit..."
Makes maintenance a whole...
February 16, 2005 at 2:18 pm
I find that hard to believe. I haven't dealt specifically with DB2, but interfacing to other vendors databases has always been extra slow using a Linked Server.
Have you done any...
February 16, 2005 at 1:44 pm
So is the error in the same package?? If you pass a character value to a procedure that's expecting an int then yes you will get that error.
Are you sure...
February 16, 2005 at 1:37 pm
Viewing 15 posts - 1,516 through 1,530 (of 2,486 total)