Viewing 15 posts - 976 through 990 (of 1,110 total)
personally, if the answer to my previous is q is yes then i'd do something like:
1) export my server list that i keep in a handy sql table to...
November 11, 2015 at 2:00 pm
You're trying to disable windows update from a script running in sql?
November 11, 2015 at 1:57 pm
Why are you invoking a clear screen command in a script that should be pretty quiet and writing to a file?
November 11, 2015 at 6:27 am
try piping the output of the .ps1 to a file or something.
November 10, 2015 at 1:43 pm
If your database needs to be available from more than one machine, and you don't have a server to host it, you might consider an Azure solution instead.
November 2, 2015 at 2:15 pm
My devs think this is the magical 'sql gofast' hint.
*facepalm*
November 2, 2015 at 2:01 pm
Would this scenario work?
My SQL Agent jobs for this thread connect to the instances of the databases, not the local versions, so if I had another SQL server...
October 30, 2015 at 1:06 pm
to disable all non-clustered indexes on table 'x;'
declare @Ind varchar(255)
declare @sql varchar(8000)
DECLARE vend_cursor CURSOR
FOR SELECT Name FROM sys.indexes WHERE...
October 29, 2015 at 8:55 am
Ed Wagner (9/23/2015)
Alvin Ramard (9/23/2015)
Luis Cazares (9/23/2015)
Manic Star (9/23/2015)
patricklambin (9/23/2015)
Stewart "Arturius" Campbell (9/22/2015)
Interesting question, thanks SteveAnother of the functions copied from Excel.
I don't think so. These functions have been introduced...
September 23, 2015 at 1:04 pm
Luis Cazares (9/23/2015)
Manic Star (9/23/2015)
patricklambin (9/23/2015)
Stewart "Arturius" Campbell (9/22/2015)
Interesting question, thanks SteveAnother of the functions copied from Excel.
I don't think so. These functions have been introduced only to make easier...
September 23, 2015 at 8:08 am
Grant Fritchey (9/22/2015)
September 23, 2015 at 6:28 am
patricklambin (9/23/2015)
Stewart "Arturius" Campbell (9/22/2015)
Interesting question, thanks SteveAnother of the functions copied from Excel.
I don't think so. These functions have been introduced only to make easier the translation Access towards...
September 23, 2015 at 6:22 am
kim / data detection group (9/17/2015)
You can bundle all your related procedures and functions into a...
September 22, 2015 at 6:51 am
GilaMonster (9/16/2015)
<snip>Yup, that's one of the solutions in the simple-talk article.
Which i just forwarded to the manager of the dev team. They are planning a code review of the...
September 18, 2015 at 7:00 am
My co-dba and I wrote some really bad poetry:
one proc to rule them
one proc to bind them
one proc to bring them all and in the darkness, deadlock them
'precious deadlock' ...
September 16, 2015 at 2:19 pm
Viewing 15 posts - 976 through 990 (of 1,110 total)