Viewing 15 posts - 16 through 30 (of 72 total)
Thank you Jeffery. I will keep both methods on hand. For simplicity I think I try the second method first. Warm regards, Hope
December 12, 2008 at 2:11 pm
This will take a bit to digest. I will be back though. Warm regards,
October 30, 2008 at 3:02 pm
Thank you for the explanation.
If I'm not imposing on your good will below is the code I used to create the messages, queues, et.al. and below that is the procedure...
October 30, 2008 at 8:50 am
Should the END CONVERSATION be wrapped in an IF to avoid ending a conversation with a NULL handle ?
For various reasons, it is normal for a Queue's activation procedure to...
October 30, 2008 at 6:42 am
Hi,
Problem 1) taken care of: sp_notify_operator works with the parameter @profile_name not the parameter @profilename. The Help on sp_notify_operator is wrong.
So that just leaves me wondering about problem...
October 29, 2008 at 4:34 pm
Found the problem, the admin login I was using was given only the Public server role. It should have been identical to the production login but was not.
October 29, 2008 at 4:21 pm
Hi, regarding Service Broker I am testing. The message types and everything are set up and seem to be fine. I can run the procedure that begins the conversation. I...
October 29, 2008 at 4:08 pm
Jeff, sorry to be so dense, I did not have the file open with another application when I ran the bcp. The xp_cmdshell @echo command created the file in the...
October 21, 2008 at 7:04 am
Did you, by any chance, have the file you create with the @ECHO command open in a word processor or NotePad when you tried to run the BCP command?
--Jeff...
October 20, 2008 at 6:27 am
I use five temp tables and four have indexes. I'm pretty sure I have them tuned as best they can be, tuning the fourth table cut 45 seconds off.
I...
October 17, 2008 at 2:36 pm
Jeff, I used your example and I have the following error
SQLState = HY000, NativeError = 0
Error = [Microsoft][SQL Native Client]Unable to open BCP host data-file
I have verified that I can...
October 17, 2008 at 11:12 am
Thank you to bhovious, Lowell and Jeff for helping me. I learn from all and it raises my abilities. Once I implement use of bcp in my work I'm sure...
October 17, 2008 at 6:05 am
Hi again,
I got it done! Did the same delete a second time only with firstcontact < secondcontact.
DELETE FROM T1
FROM #header T1, #header T2
WHERE T1.fkProjectID = T2.fkProjectID
AND T1.ContactType < T2.ContactType
Warm...
August 27, 2008 at 1:56 pm
Hi again,
I found how to eliminate duplicate contacttypes for the same fkProjectID as below, keeping the newest by DateCreated. So now I think I only have to delete the 'firstcontact'...
August 27, 2008 at 9:50 am
Viewing 15 posts - 16 through 30 (of 72 total)