Viewing 15 posts - 1,036 through 1,050 (of 13,445 total)
a really nice feature is you an update on a cte affects the base table, so if you generate an identifier for dupes, you update everything that is a dupe.
WITH...
May 6, 2016 at 12:03 pm
so your applicaiton has sysadmin rights, and whenever it creates a login, it makes it sysadmin, and then adds a user i guess.
if you kill it in a trigger, you'll...
May 6, 2016 at 11:42 am
SqlBarbarian (5/6/2016)
May 6, 2016 at 11:01 am
remember there is a difference between a LOGIN and a USER.
nothing gets any rights unless you add them to a group or role that gives them permissions.
so, never add a...
May 6, 2016 at 10:54 am
obfuscate object names? that might make things difficult to get help with, because someone might suggest a change to the schema of a table, you have the mapping issue; but...
May 6, 2016 at 9:53 am
ok, here's how i would tackle it;
assuming your analysis on the two chars is correct, this produces both "versions"
of the data;
now i would simply test for high ascii, and take...
May 6, 2016 at 8:50 am
SQLRO (5/6/2016)
STUFF(column_name,1,1,'') then it removes 02 as that is the first character in binary and makes the binary pattern as 0x31...
May 6, 2016 at 8:10 am
I'm always confused about what a data analyst title really covers as well, i tend to think of it as using statistics to find both trends and outliers, maybe with...
May 6, 2016 at 7:24 am
wow that's an interesting puzzle.
so is the varbinary string stored as a string datatype, or is it a varbinary(max)?
for a solution , we need the datatype as it is stored...
May 6, 2016 at 6:56 am
unless you have an extended event or audit already in place, you cannot capture that data; SQL executes a query and throws it away, but it might save the plan(the...
May 6, 2016 at 6:27 am
for a sandbox, My labs exist in either VirtualBox or VMWare; i have both installed on my beefy laptop. VirtualBox even has a portable edition, so you can keep them...
May 6, 2016 at 6:08 am
is the CAC card number in table anyplace, or can it be used to get CACNumber +email, so it can be joined to your ADObj table?
your snippet was incomplete/not syntactically...
May 5, 2016 at 12:11 pm
also SQLServercentral is an awesome resource, besides the Stairways Series , and free ebooks,
read these forums.
a lot of us go to a bit of trouble to make sure there...
May 5, 2016 at 9:56 am
Danny987654 (5/5/2016)
I have installed the tools on my workstation but this was from the free version. I assume the developer edition is one we would need to...
May 5, 2016 at 8:31 am
this link has a couple of screenshots and an explanation that can help:
basically, SSIS has a built in error logging mechanism, and you can have it write to one or...
May 5, 2016 at 6:45 am
Viewing 15 posts - 1,036 through 1,050 (of 13,445 total)