Viewing 15 posts - 181 through 195 (of 7,635 total)
OK, cool, I didn't know you could do all of that.
Anyway, to answer your question, yes, I would put as much of that as possible in a stored procedure.
August 29, 2012 at 6:39 pm
It is a lot of effort-overhead. I haven't used Certificates much beyond proc-signing for some cross-database stuff. Let me read Jonathan's article and see if I can better...
August 29, 2012 at 1:38 pm
"SELECT COUNT() ..." is usually faster than "SELECT * ...", especially over a network connection.
August 29, 2012 at 1:25 pm
ahthomas (8/29/2012)
I have a database with like 20 data files and a log file. Any idea how to use Microsoft native log shipping for that? Or is that not possible?
Should...
August 29, 2012 at 1:08 pm
You should be able to view them if you put it in Standby (which is normal for Log-shipping secondaries). I can, anyway. 🙂
August 29, 2012 at 12:47 pm
Is it the Primary or a Secondary? And what's the compatibility level of the database.
August 29, 2012 at 12:42 pm
Unless the queries all strictly follow the same very simple format, this is going to fall somewhere between "Impossible" and "Incredibly Hard" to do in SQL.
If the queries are all...
August 29, 2012 at 12:29 pm
There are certain areas of SQL Server that are not as well supported by scripting as others. Security, in general, is one of them and certificates in particular.
Because of...
August 29, 2012 at 12:17 pm
Yeah, I've had this happen to me too on customer sites. It was really annoying because it would NULL-Propogate across all of my email and dynamic SQL strings anywhere...
August 29, 2012 at 11:49 am
guerillaunit (8/28/2012)
i tried adding the use statement. It looks like the same problem as before. The script runs endlessly on
Check to see if there are any other processes...
August 28, 2012 at 4:39 pm
telaan (8/28/2012)
I am working with my AD admin to get delegation set up between several servers so we can do a double hop.
We've set the SPNs and enabled delegation but...
August 28, 2012 at 10:41 am
GilaMonster (8/28/2012)
You can post your problems here and people will probably help you. That said it sounds like you're asking for free consulting....
Heh, all problems are serious until you...
August 28, 2012 at 10:19 am
Lynn Pettis (8/28/2012)
UPDATE Orders SET
some_col = (select
...
August 28, 2012 at 10:07 am
"host process ID 30416" refers to that user (or program's) Windows process ID. You'll need to check the windows Event Log (if you're lucky and its in there), or...
August 28, 2012 at 9:45 am
Viewing 15 posts - 181 through 195 (of 7,635 total)