Viewing 15 posts - 1 through 15 (of 17 total)
Thanks for the tip on that white paper. I had browsed MSDN looking for help but didn't come across that document. After a quick look through the profiling...
April 14, 2010 at 2:33 pm
That script modification solves the problem. Thank you.
April 1, 2010 at 12:05 pm
17 of the 23 rows in the table get the default value. The other 6 rows get updated with 6 distinct values.
Here's the relevant parts of the...
April 1, 2010 at 11:10 am
All our tables of this nature have ModifiedOn, ModifiedBy, and RowCheckSum fields as the last three fields in the table. So the new field had to be inserted before...
April 1, 2010 at 10:48 am
Unfortunately, my column insert is not performed with an ALTER statement. I first create a temp table where the new column is 5th out of 8 columns. 2)Insert original...
April 1, 2010 at 10:28 am
I was recruited to be a db developer full time after dabbling in SQL and stored procedures for several years in the BI world. I had always tested my...
November 10, 2009 at 8:37 am
I'd hire a individual who fits in and is anxious to learn something new before an argumentative know-it-all. The former will interact positively with the rest of the team,...
November 9, 2009 at 7:49 am
In addition to the other suggestions. why not ask the business owner of the data for their thoughts? Some of them are intelligent enough to know what a primary...
September 23, 2009 at 9:10 am
Before joining the DBA world I was an accountant, and was asked multiple times at different companies to falsify records to make these companies look better. I'm proud to...
September 3, 2009 at 12:05 pm
I'm just guessing, but your BULK INSERT statement looks something like this - -
BULK INSERT
FROM 'filelocation\filename.txt'
WITH (FIELDTERMINATOR = ',') --if commas separate your values--
You said you...
September 2, 2009 at 9:46 am
I did this recently to determine if a row needed to be updated. I put a checksum column in the table using the values that could possibly be updated....
September 1, 2009 at 10:24 am
I'm not looking to change the location that Integration Services gets installed to, I'm looking to change the default folder a given SSIS package gets deployed to. In theory...
April 7, 2009 at 1:02 pm
The command in question looks like this -
EXEC MASTER..xp_cmdshell 'BCP "EXEC GfmReplication.dbo.zz_ExportXml" queryout c:\Org.xml -S(local) -T -c'
The problem is that my script, being part of a unit test, was...
February 24, 2009 at 3:45 pm
Viewing 15 posts - 1 through 15 (of 17 total)