Viewing 15 posts - 4,966 through 4,980 (of 7,429 total)
Please do not crosspost. Duplicate message, please see post/replies in http://www.sqlservercentral.com/forum/topic.asp?TOPIC_ID=6517&FORUM_ID=6&CAT_ID=1&Topic_Title=Fail+when+execute+DTS+package&Forum_Title=Security
"Don't roll your eyes at me. I will tape them in place." (Teacher on Boston Public)
August 30, 2002 at 3:44 am
If you need a standard sequence number 1-... then you can use
ALTER TABLE tblname ADD column_name INT NOT NULL IDENTITY(1,1)
Keep in mind INT can only handle so many records, if...
August 30, 2002 at 3:43 am
Where is the program running, is it on the server or at a workstation? If the later have you tried running the DTS package thru EM and verify the issue...
August 30, 2002 at 3:28 am
In that situation both should provide approximately the same result as for speed. If you test with conditions almost exactly the same the lag between each would be minimal if...
August 30, 2002 at 3:20 am
The fastest is to always execute at the server itself. If you do from a client machine the data wil cross the client to the server so extra traffic on...
August 29, 2002 at 7:29 pm
When Excel is parse in DTS there is a mapping generation that occurrs. When you connect to the file in the transformation, the tab for excel should tell you what...
August 29, 2002 at 7:25 pm
Good advice, thanks for adding that in.
"Don't roll your eyes at me. I will tape them in place." (Teacher on Boston Public)
August 29, 2002 at 7:21 pm
Check it out here http://www.sqlservercentral.com/columnists/bknight/transferdiagram.asp
"Don't roll your eyes at me. I will tape them in place." (Teacher on Boston Public)
August 29, 2002 at 3:58 pm
I have changed between IP addresses without issue in 2000, the only thing that might affect you is config of name to IP in Client Network utility may need to...
August 29, 2002 at 3:41 pm
Keep in mind you have three fields and a count column. I would expect to see something like this at minimum if the termnum was unique and only had one...
August 29, 2002 at 3:13 pm
When you say you are running these traces, is this is profiler or xp_trace... procdures to create a queue? If profiler then what happens when you close profiler, can they...
August 29, 2002 at 2:59 pm
Set the process to on success run the same step or step 1. Then in the step add a WAITFOR DELAY '000:00:10' to have the process pause for 10 secounds....
August 29, 2002 at 12:18 pm
First I don't know how you can tell if the tape is full until full. I will look some more when I get a chance.
As for the older sets, I...
August 29, 2002 at 9:12 am
Try running sp_resetstatus [ @DBName = ] 'database' to reset the suspect flag then try repair.
"Don't roll your eyes at me. I will tape them in place." (Teacher on Boston...
August 29, 2002 at 8:44 am
You might try adding logging or an error fil by openin the properties of the package and setting these. Shoul be able to tell you where the process stopped or...
August 29, 2002 at 7:41 am
Viewing 15 posts - 4,966 through 4,980 (of 7,429 total)