Viewing 15 posts - 1,036 through 1,050 (of 6,486 total)
Lynn Pettis (3/29/2012)
pietlinden (3/29/2012)
add an incrementing identity column to the destination table before running inserts?
And then when you select from the table be sure to use an ORDER BY clause...
March 30, 2012 at 1:48 pm
You may want to double check what you need to keep track of. In the scenarios where I've had to implement this type of tracking, you need VERY specific...
March 30, 2012 at 9:07 am
Jeff Moden (3/26/2012)
Matt Miller (#4) (3/26/2012)
sknox (3/26/2012)
March 26, 2012 at 3:05 pm
sknox (3/26/2012)
March 26, 2012 at 1:51 pm
By rounding it, BEFORE the sum, you're essentially signifying that only 2 decimal places are "significant". With that in mind, both numbers are accurate descriptions of the result.
Remember in...
March 23, 2012 at 1:48 pm
ROUND() doesn't change the data type in this case. The result is still a FLOAT.
http://msdn.microsoft.com/en-us/library/ms175003.aspx
If you want it to be a decimal when you all done, CAST it to...
March 23, 2012 at 1:22 pm
From my experience, the CLR itself is always going to be disadvantaged when trying to write to the DB (the CLr best practices advocate avoiding writebacks for this reason). The...
March 20, 2012 at 11:19 am
Two aspects to look at:
- most of my tables are accessed in some fashion. That said - very little of the data older than a year is ever...
March 19, 2012 at 2:57 pm
You're hitting two different kinds of fragmentation. One is physical file fragmentation (how many parts are scattered across the various physical disk strcutures), and the other is logical (within...
March 15, 2012 at 3:57 pm
gmamata7 (3/15/2012)
Matt,In real world, if the database size 2 TB, how to backup that?
Full backup may take 1 day or 2..I don't think people do that way..
Please advise
I am not...
March 15, 2012 at 3:44 pm
SQL Server per se isn't going to care which card is used to access the drive. It frankly doesn't actually care whether the drive being used is local or...
March 15, 2012 at 12:20 pm
farmkittie (3/12/2012)
March 12, 2012 at 1:45 pm
Also - If you fire the trigger after UPDATE, your taxid ID will never be anything other than 1.if you were to update the taxID from the UI, the trigger...
March 12, 2012 at 12:34 pm
As an FYI - you can also do this from a client machine with visual studio. From within an Integration Services project you can "Add Existing Package" which will...
March 9, 2012 at 2:18 pm
keep in mind that calvo's fix is a machine-specific fix. If you post from multiple PC's, you need to do that from EACH machine.
You can change your notifications on...
March 9, 2012 at 1:01 pm
Viewing 15 posts - 1,036 through 1,050 (of 6,486 total)