Viewing 15 posts - 781 through 795 (of 13,445 total)
Thomas makes a good paint on the procedures being the way the GUI makes job changes; that means besides triggers, you could also modify the procedures themselves so that they...
November 27, 2016 at 10:32 am
i think job changes are actually DML changes, and not DDL changes; those are insert/update/delete to the tables in msdb: dbo.sysjobs, dbo.sysjobsteps and dbo.sysjobschedules for example.
you could put DML triggers...
November 25, 2016 at 7:14 am
tocy1980 (11/18/2016)
update Server_FINAL
set Server_FINAL.Parts = [Linked Servers].[DATA STORE LINKED].['ET NEW$'].[Parts Used]
and it doesn't work.
Get this error: he multi-part identifier "Linked Servers.DATA STORE LINKED.'ET NEW$'.Parts Used" could not...
November 22, 2016 at 11:51 am
yes you can.
I think in 2012, you had to hand script everything, right?
i used the 2016 GUI, which shows the GUI filtering criteria , and then scripte dit;
hope this helps!
CREATE...
November 22, 2016 at 10:06 am
i googled a bit to find reasons SSMS is slow sometimes;
i see SSMS can sometimes validate some .net packages;
https://www.virtualobjectives.com.au/sqlserver/ssms_slow.htm
this one implies a few basics: virus scanners, the default connection type...
November 22, 2016 at 6:36 am
I bet it's a cache in VS.
visual studio creates a local *.data file with cached data so that it doesn't have to go back and forth to the server a...
November 21, 2016 at 11:09 am
maybe the databases they are creating have large space assignments?
i know if you have not set up instant file initialization, you can see some delays, right?
November 21, 2016 at 9:33 am
glad you've got it sorted out.
I have to use both in my environment;
we have some tunnels to another domain where the AD accounts are not trusted, so I've got to...
November 21, 2016 at 9:04 am
ElementZero (11/21/2016)
November 21, 2016 at 8:50 am
sqlinterset (11/21/2016)
i dont have it in my sql library .. is there any other way using traditional sql?
without reinventing the wheel?
it's much easier to add it:
it's in the zip...
November 21, 2016 at 8:41 am
sqlinterset (11/21/2016)
i want to write a tsql query for it.
DelimitedSplit8K is a TSQL function.
November 21, 2016 at 7:40 am
Find the article with the string splitter named DelimitedSplit8K here on SSC and download it;
it makes spitting things like this a lot easier.
once split, you just filter for items that...
November 21, 2016 at 7:22 am
here's the script i use to generate the CREATE VIEW scripts for all extended events on the server:;
it has a reference to master.dbo.DelimitedSplit, which is a version i made of...
November 21, 2016 at 7:14 am
I've created views for all my Extended Events, so they are a little slow, but orders of magnitude easier to use.
yes the views shread the XML, but once written they...
November 21, 2016 at 7:08 am
Viewing 15 posts - 781 through 795 (of 13,445 total)