Viewing 15 posts - 166 through 180 (of 322 total)
Now that I think of it, since my tempdb is the only occupant of F:, there's really no reason to not size it to 146GB and be done with it. ...
March 21, 2007 at 2:33 pm
The warehouse load is a big, hairy monster that I hesitate to disturb. The server guys want to turn off monitoring so they don't get a page when the disk...
March 21, 2007 at 12:55 pm
You would need a client that is written in some language that understands how to read jpg files from a disk and can send it off to be inserted in...
March 16, 2007 at 11:50 am
"Imagine what would happen if the same kind of DBAs are also the interviewers too !!!!!!!!"
Then they would be managment.
March 15, 2007 at 4:47 pm
set nocount on
declare @Result TABLE (String varchar(50))
declare @String varchar(50), @10 char(3), @13 char(3), @9 char(3)
SET @10 = '%' + char(10) + '%'
SET @13 = '%' + char(13) + '%'
SET @9...
March 15, 2007 at 12:56 pm
"I am creating a new erd diagram that has many tables that won't fit into the largest page."
Don't overlook the low-tech solution: I only have an 8-1/2 by 11 inch...
March 15, 2007 at 12:30 pm
No underscores for me, either. Fat fingers.
"If it was hard to write, it should be hard to read, and even harder to maintain."
March 9, 2007 at 11:09 am
I vote thumbs down on prefixes. I am now dealing with 400+ tables that all begin with TBL_XX_tablename, where XX is the initials of the guy who created it. The...
March 8, 2007 at 2:23 pm
I've had nine contracts or jobs the last eight years, so I've interviewed a bit. I much prefer Joanna's scenario-based questions. I've had a few tests, but mostly they were...
March 8, 2007 at 12:00 pm
Why not go to VB.NET 2005 Express?
March 7, 2007 at 5:07 pm
If you haven't already solved this, check out BULK INSERT and bcp in BOL and on this site. You should be able to specify the column and row delimiters in...
March 7, 2007 at 4:58 pm
Skip:
I, too, have suffered from the sins of the fathers (and mothers) with a similar setup. Assuming that you store the value of the ID column in each child table and...
March 7, 2007 at 4:54 pm
I would bulk insert it into a table, massage it, then use bcp to write to the file. Search the forums here or look in BOL for some useful information.
Luck,...
March 6, 2007 at 5:27 pm
Minh: Search the site forums for "apostrophe", and you will get lots of useful information.
March 6, 2007 at 5:24 pm
Viewing 15 posts - 166 through 180 (of 322 total)