Viewing 15 posts - 4,261 through 4,275 (of 6,486 total)
Jeff Moden (3/10/2008)
Heh.... Just like SQL allows itself to take any form... or Java... or...
Touche.
I worded that poorly. It's not so much that you can write poor...
March 11, 2008 at 7:18 am
M.van Leewen (3/11/2008)
OK Jeff, So no shrinking! Is there any point in time that shrinking is good?Menno
Shrinking - sometimes. Auto-shrinking - essentially never.
Shrinking allows you to recover some size...
March 11, 2008 at 7:10 am
J Sitz (3/10/2008)
Rebooting the server fixed it. How can I test for a memory leak on the server? This was the first assembly on the server, but it...
March 10, 2008 at 9:58 pm
if you don't like the row terminator, then add the -r (row terminator) flag to your BCP. You will need to try various ones to find which one works...
March 10, 2008 at 7:45 pm
M.van Leewen (3/10/2008)
Hi Matt,I want to try to set the temp DB to a larger start size. How can I do that?
Menno
It would look something like this:
Alter DATABASE [tempdb]
MODIFY...
March 10, 2008 at 7:41 pm
Nice article...but -
I can't help but ask - why use VBScript when you can use an actual full-featured language? You know - something with actual types, error-handling, etc...?
I...
March 10, 2008 at 7:30 pm
The bigger question is - what kind of data do you need to get into Informix? What types of files does Informix prefers?
You can export (using SSIS, BCP, or...
March 10, 2008 at 7:09 pm
If you mean turning off logging through the transaction log - no. Not possible. All activity is "logged" (meaning the changes are put into the log FIRST, then...
March 10, 2008 at 7:01 pm
Jeff Moden (3/10/2008)
Throw CTE's and ROW_NUMBER() into the picture and the idea of using a cursor just means you got lazy or you really shouldn't be writting SQL (not anyone...
March 10, 2008 at 6:55 pm
Jeff Moden (3/10/2008)
Pivot also has some limits... I believe you can only Pivot based on one column...
Not only is the new pivot command limited to one column, it's limited to...
March 10, 2008 at 6:48 pm
I noticed you mentioned that the Maintenance plan does a log backup. That would fail if the DB is in Simple recovery mode.......
(Log backups only "work" in Full or...
March 10, 2008 at 3:31 pm
Actually dfalso - not at all. it's fairly remarkable what formats work right out of the box.... just CAST them to datetime. with or without slashes....
March 10, 2008 at 3:02 pm
Well right - it's homework, so you need to do most of the heavy lifting.
A few questions might help you along though:
- what's the term used in databases dealing...
March 10, 2008 at 2:01 pm
Steve Jones - Editor (3/10/2008)
giving a horse aspirin is a...
March 10, 2008 at 1:55 pm
One of the primary attributes of a Primary Key is that is must be unique - so your purchase order ID cannot be the PK of this particular table (since...
March 10, 2008 at 1:05 pm
Viewing 15 posts - 4,261 through 4,275 (of 6,486 total)