Viewing 15 posts - 61 through 75 (of 87 total)
If you are using a VB application, then there is no need to use xp_cmdshell for this.
July 13, 2010 at 11:24 am
Did you test with telnet?
http://weblogs.sqlteam.com/tarad/archive/2008/05/23/60609.aspx
Your error indicates it's using named pipes and not TCP/IP. When you used IPAddress,PortNumber did you get a different error?
July 13, 2010 at 11:20 am
You don't need to use xp_cmdshell for this. Just run DBCC CHECKDB directly inside a query window in SSMS and select the option to output it to a file.
Or...
July 12, 2010 at 11:09 am
I don't think a DMV is going to help you. You'd have to query for the traces via fn_trace_gettable.
How often is your system hitting this high of CPU? ...
July 11, 2010 at 5:43 pm
Dynamic SQL doesn't run in the same context as the trigger, so that's why it doesn't exist.
Why are you trying to do it this way? What is...
July 11, 2010 at 5:38 pm
Where are you getting the 143GB number from? Have you included the free space that exists in each of the 6 files?
July 9, 2010 at 9:34 pm
Agreed, didn't realize you could do that!
July 9, 2010 at 9:32 pm
I guess I assumed that the dynamic SQL was being used for something that the OP wasn't showing us.
July 9, 2010 at 2:48 pm
If you are using strong encryption, then a techie can not decrypt it.
There is no way to prevent users from connecting via Query Analyzer or any similar query...
July 9, 2010 at 11:51 am
Let's not go too far yet. I'm wondering if you need to replicate delete statements. If a delete happens at the publisher, do you need that same delete...
July 8, 2010 at 9:27 pm
I would suspect that's the case for small companies that need more of a jack of all trades type person as they can't afford specialized people. But in large...
July 8, 2010 at 9:25 pm
Yeah I see that now. I thought it was an issue with a table variable.
I think you're going to need to fake it out with OPENQUERY then. Or...
July 8, 2010 at 9:00 pm
You would do it in the article properties. What I'm wondering though is if you need to replicate delete statements. If you need to, then you can't turn...
July 8, 2010 at 8:55 pm
Could you turn off replicating deletes?
July 8, 2010 at 7:32 pm
You need to use a temp table instead of a table variable.
July 8, 2010 at 7:30 pm
Viewing 15 posts - 61 through 75 (of 87 total)