Viewing 15 posts - 586 through 600 (of 7,429 total)
If you defined a bulk load in your DTS package it may bypass the trigger. But why do you have a trigger to look for nulls? What do you have...
May 31, 2007 at 7:19 am
Only instances I would think is Dev, QA and UAT if ran on the same box. This way you can have a single DB name and backup from each other...
May 30, 2007 at 7:33 am
From SQL BOL and yes I used the wrong word.
Floating point data is approximate; not all values in the data type range can be precisely represented.
And here is a nice...
May 23, 2007 at 1:58 pm
Float is inprecise approximate and may throw off the expected results.
If you want 2 inputs to be int the do as you have but do one of the followiung ways to...
May 23, 2007 at 12:27 pm
The problem is many of us would avoid it from a perfomance standpoint unless you have enough hardware to do the job. If you do then their may be no...
May 22, 2007 at 1:28 pm
I suggest you look at "Transaction Log Backups" in SQL BOL.
As for truncating, I think it is a bit of a misnomer. With the TL is truncated it does not mean...
May 22, 2007 at 1:18 pm
Reads to me like you have a FK on one of your columns which is constrained to another tables key column which does not have a matching value. You will...
May 22, 2007 at 10:17 am
Actually you should not bother to defrag a drive with SQL databases on it live. If they are open they will be locked and the defrag process will end before...
May 22, 2007 at 8:06 am
My most likely suspect would be your system Page file? If a lot of data is being switched in and out of the page file it can bog your system...
May 22, 2007 at 7:55 am
Keep in mind Excel has a 64k row limit.
May 17, 2007 at 1:39 pm
The question I have is what system was he to write this against? Be funny if he get's it wrong due to SQL difference or if the teacher wanted in...
May 17, 2007 at 8:09 am
.antares686 th, .antares686 td {border:1pt solid #000000}
| Short Name | .NET Class | Type | Width | Range (bits) | SQL Datatype (Closest Match) | Constraint to use (if needed in table definition) |
|---|---|---|---|---|---|---|
byte | Byte | Unsigned integer | 8 | 0 to 255 | tinyint | |
sbyte... |
May 17, 2007 at 7:19 am
Still trying to figure out the other note to give a logical reason or a way to reduce. But as for your item Sorin, I would look at the number of...
May 17, 2007 at 6:55 am
See if this helps
SELECT
((SUM(CASE WHEN (PL.Pltat + PL.Plunworkable) > 75 THEN 1.0 ELSE 0.0 END) / CAST(Count(*) as decimal(10,5))) * 100.00) AS Percentage,
ROUND(((SUM(CASE WHEN (PL.Pltat + PL.Plunworkable) > 75 THEN...
May 16, 2007 at 1:32 pm
Viewing 15 posts - 586 through 600 (of 7,429 total)