Viewing 15 posts - 4,366 through 4,380 (of 13,464 total)
you could do it in a trigger, when some value actually gets changed, or you could create a scheduled job to periodically scan the table for exceptions, depending on how...
November 19, 2012 at 1:25 pm
Rod at work (11/19/2012)
I should add, this does work with AD 2003, correct? Our servers are kind of old; we're running 2003 R2 AD.
yeah, my code examples have been working...
November 19, 2012 at 1:22 pm
yeah the error implies either the file or folder is spelled incorrectly, or the filename itself doesn't exist...extra underscore or anything like that a possibility in the name?
November 19, 2012 at 12:33 pm
looks like no problem...you simply need to add that additional check to your update...
something like this looks correct to me, base don what you posted so far:
this would be the...
November 19, 2012 at 12:20 pm
NJDave (11/19/2012)
I have a request to allow a vendor to have VPN access to my SQL Server that currently has one default instance.
The default instance contains multiple databases for multiple...
November 19, 2012 at 12:02 pm
also, the actual number of fields available to query is daunting; i only grab a few myself;
but this website http://www.rlmueller.net/UserAttributes.htm has a spreadsheet that has the most comprehensive list...
November 19, 2012 at 11:52 am
yes, with a linked server.
for me, domain information is very static...we don't add new people or move people into groups very often, so I usually take a "snapshot" of the...
November 19, 2012 at 11:43 am
looks like it cannot be done;
my knee jerk reaction was to see if ALTER USER supported WITHOUT LOGIN, which it does not;
my next idea was to ALTER USER WITH LOGIN...
November 16, 2012 at 3:36 pm
there is a TFS Best Practices Guide out there from Microsoft;
@6.6 meg and 496 pages, it might be a bigger bite than you care to tackle.
November 16, 2012 at 3:25 pm
here's a worst kept secret:
for any question that is not today's question of the day,
the answer is in the newsletters:
so if you were looking at the QOTD for Monday,...
November 16, 2012 at 1:44 pm
man you must be quick!
i posted my answer, and noticed i left of the .png on the image name and fixed it right away...
glad i could help!
November 16, 2012 at 1:22 pm
you probably never notice, but SSMS builds a default connection string that points to a specific database, like master, unless you selected or left <default> in place , so...
November 16, 2012 at 11:58 am
you can create a linked server to point to an excel spreadsheet, and then reference it just like shanghaigirl-1125377's example.
here's my detailed notes and example on getting it set up...
November 16, 2012 at 11:22 am
here was my test...i made a cross database synonym in one database,a dn then a procedure in the same database as the synonym:
create synonym MymasterView for SandBox.dbo.VW_FIXEDWIDTH
create procedure pr
as select...
November 16, 2012 at 11:16 am
i *think* this would give you a list of dependancy items that reference an existing synonym in a specific database.
note you can have global synonyms/ cross database synonyms in the...
November 16, 2012 at 9:18 am
Viewing 15 posts - 4,366 through 4,380 (of 13,464 total)