Viewing 15 posts - 2,416 through 2,430 (of 2,458 total)
james.massey (8/3/2012)
August 3, 2012 at 12:09 pm
Kirby1367 (8/2/2012)
Koen Verbeeck (8/2/2012)
SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS
WHERE TABLE_NAME = 'Table A'
INTERSECT
SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS
WHERE TABLE_NAME = 'Table B';
You can also use a INNER JOIN instead of INTERSECT to accomplish the...
August 2, 2012 at 4:36 pm
GilaMonster (8/1/2012)
Growing the log is an expensive operation, the file has to be zeroed out...
August 1, 2012 at 4:29 pm
sestell1 (8/1/2012)
August 1, 2012 at 4:10 pm
polkadot (7/31/2012)
August 1, 2012 at 3:57 pm
prasadau2006 (7/31/2012)
Is their a way we can manage Transaction log even before it fills up? I have some archive tables, my requirement is to add fields to this tables...
August 1, 2012 at 1:53 pm
jshahan (7/25/2012)
July 25, 2012 at 2:27 pm
Lynn Pettis (7/25/2012)
July 25, 2012 at 2:03 pm
Lynn Pettis (7/23/2012)
July 25, 2012 at 1:23 pm
Gosh, that's quite confrontational.
My sincere apologies if I came off as confrontational; that was not my intent.
I, too, get quite a bit of information on the Internet...
July 25, 2012 at 1:16 pm
Jeff Moden (7/23/2012)
XMLSQLNinja (7/23/2012)
ChrisM@home (7/20/2012)
XMLSQLNinja (7/18/2012)
...There are other ways to do this but using recursion is generally the fastest.
Recursion is the third fastest; CLR > "Quirky Update" > rCTE >...
July 23, 2012 at 10:34 pm
Oky Doky.
Just got back from vacation and wanted to get to this ASAP. I am not optimizing this query, just getting the desired results for now.
First, no UDF needed....
July 23, 2012 at 5:05 pm
ChrisM@home (7/20/2012)
XMLSQLNinja (7/18/2012)
...There are other ways to do this but using recursion is generally the fastest.
Recursion is the third fastest; CLR > "Quirky Update" > rCTE > cursor > triangular...
July 23, 2012 at 3:43 pm
Just got back from vacation and wanted to address this one first...
I must be missing something but I don't see how that recursive CTE (as much as I like...
July 23, 2012 at 2:55 pm
First thought was that we would connect to current db and do updates directly (validating fields before update).
Good Grief! First and foremost - NEVER do that. As a DBA,...
July 18, 2012 at 11:22 am
Viewing 15 posts - 2,416 through 2,430 (of 2,458 total)