Viewing 15 posts - 4,411 through 4,425 (of 6,486 total)
select *
from
MyTable
inner join (select custname,
...
March 3, 2008 at 10:59 am
Keep in mind that the log backup will free up space INSIDE of the transaction log, so that the DB can continue to log activity. This will NOT give...
March 3, 2008 at 10:52 am
...and don't forget - the nice thing about temp tables is that they're TABLES (meaning - can be indexed, etc...). Sometimes building an index on a temp table is...
March 3, 2008 at 9:19 am
Lynn Pettis (3/3/2008)
March 3, 2008 at 9:01 am
Jeff Moden (2/29/2008)
March 3, 2008 at 8:48 am
paulhunter (3/2/2008)
March 3, 2008 at 8:34 am
Did I see my name mentioned? next to some amazon gift cert? woot!
March 1, 2008 at 9:58 pm
Why ODBC? ODBC is on its way out - why not OLE-DB?
Besides SQL is so much more optimized to "talk" oleDB....
February 29, 2008 at 1:27 pm
Are you sure the message is originated by your install operation (as opposed to an insert trigger on the table?) I've fallen for the duplicate row message only to...
February 29, 2008 at 1:02 pm
(I'm sure that one of the SNIA's will be by shortly to rap my knuckles sharply with a ruler, so let's make this "simple")
I think you're reading too far into...
February 29, 2008 at 12:40 pm
1. Agree with Grant - keep the connection open only as long as is required. That being said, opening a connection, making 2 calls in a row, then closing...
February 29, 2008 at 9:41 am
Try....
System.Security.Principal.WindowsIdentity.GetCurrent.Name.ToString()
February 29, 2008 at 9:16 am
According to the BOL quote - using 0 to pass in would serve the same purpose as passing the original fillfactor. Meaning 0 = use the original fillfactor.
I'm not...
February 29, 2008 at 8:50 am
Adam Bean (2/29/2008)
Matt Miller (2/29/2008)
That probably bears confirmation. Should be easy to verify...
February 29, 2008 at 8:45 am
For a quick "free" boost in performance - since there logically should be no overlap between the two - replace any of the UNION operations above with a UNION ALL....
February 29, 2008 at 8:23 am
Viewing 15 posts - 4,411 through 4,425 (of 6,486 total)