Viewing 15 posts - 9,646 through 9,660 (of 13,461 total)
am i reading this wrong?
i thought a server side trace starts when you run the command EXEC sp_trace_setstatus @traceid, 1, and runs continuously. rebooting or stopping/starting the server...
April 21, 2010 at 1:56 pm
solid advice so far; I agree with everyone above that encryption should be selective to specific items.
think it through a little though:
Is it not true that if EVERY field is...
April 21, 2010 at 10:08 am
try this command first:
EXEC sp_tables_ex LinkedServerName
that should give you a list of the tables the login you are using can view/has access to;
if the linked server has access to more...
April 21, 2010 at 8:36 am
well, you can't get TRUNCATE to activate a trigger on a table;from BOL:
TRUNCATE TABLE cannot activate a trigger because the operation does not log ... the db_owner and db_ddladmin fixed...
April 21, 2010 at 7:24 am
in 2005 and above, syscomments is a view, and no matter the override setting, cannot be updated.
please test any advice you make before posting it...it can mislead floks who don't...
April 21, 2010 at 6:15 am
just use the ISNULL function to convert the null, i would think should work just fine:
SELECT
C.LOCATION_NAME,
SUM(ISNULL(A.SALE_AMOUNT,0.00)) AS SALE_AMOUNT
FROM SALES A,
LEFT OUTER JOIN ACCOUNT...
April 20, 2010 at 4:08 pm
you'll need to paste the exact code you are using; encrypting part of a string, then concatenating the decrypted results is easy, so it's probably something fairly basic that is...
April 20, 2010 at 2:45 pm
bagofbirds-767347 (4/20/2010)
April 20, 2010 at 12:47 pm
for encryption, i really like this article; lots of example,s and easy to follow along:
you know you have to encrypt the entire string, and not just part of it right?
so...
April 20, 2010 at 11:49 am
tomas i learned something with this, thanks; i never get to use xml/xquery at work, so all my experience comes from testing ehre; your code gave me what i needed.
this...
April 20, 2010 at 9:20 am
rik there must be more to joining the families of parts;
if it was just that SVD matches XVD, then if i have ten rows in PartSubFamilyA, and only one row...
April 20, 2010 at 9:00 am
the TOp command is working for me to limit this example;
I couldn't use what you had posted, soemthing about the schema...
try this example with and without the TOP;
i get 3...
April 20, 2010 at 8:53 am
datetimes are not stored in that format, it just happens to be the default way your regional settings are presenting the datetime. they are actually stored in numeric formats behind...
April 19, 2010 at 11:18 pm
jeremy you'll want to left outer join the two tables;
by checking a third column in the table, you can find which items in tableb do not exist in tablea
this example...
April 19, 2010 at 11:02 pm
Viewing 15 posts - 9,646 through 9,660 (of 13,461 total)