Viewing 15 posts - 1,006 through 1,020 (of 6,486 total)
Anything with a 8.0 version on it is based on SQL 2000. So either it IS a SQL 2000 server, or it's a DB running in 2000-compatibility mode.
This unfortunately...
May 10, 2012 at 11:30 am
Check for a trigger on the table you're updating. The direct update itself doesn't look to be the issue.
May 8, 2012 at 9:28 am
Jeff Moden (5/5/2012)
If you're worth your salt as a DBA or a Hybrid Application DBA, the Geoff A's recommendations are just about spot on.
Agreed - as long as I don't...
May 7, 2012 at 11:38 am
Keep in mind that you will likely end up owing "self-employment taxes" on anything you do, usually above and beyond usual taxes.
You might care to take a read on what...
May 4, 2012 at 12:38 pm
For what it's worth I took my own advice. I remembered having access to a 2012 downloaded copy, so I installed it.
Fresh out of the install, this works:
with base...
May 3, 2012 at 4:54 pm
Jeff Moden (5/3/2012)
drew.allen (5/2/2012)
I simply see no...
May 3, 2012 at 12:28 pm
jcrawf02 (5/1/2012)
May 1, 2012 at 10:41 am
Peter Maloof (4/30/2012)
Matt Miller (#4) (4/30/2012)
A given metric might sound good form the top of the ivory tower, but be completely unrealistic at trench level.
And sometimes metrics become the end-all;...
April 30, 2012 at 3:14 pm
ROUND isn't changing the data type, so the numeric(28,12) still applies (which is padding the 0's back in).
Two choices: either handle the truncation within the report OR add a cast...
April 30, 2012 at 11:02 am
I don't really see the issue as whether to use metrics, but WHICH metrics to use. On this particular example, we had something similar but it had to do...
April 30, 2012 at 9:01 am
Assuming your file DID load 100%, try a query like the following (you will have to fix the column name since you didn't specify what yours is):
select n.value('(./text())[1]','varchar(200)')
from XmlImportTest...
April 30, 2012 at 8:18 am
Michael Valentine Jones (4/25/2012)
Matt Miller (#4) (4/25/2012)
Michael Valentine Jones (4/24/2012)
April 26, 2012 at 7:57 am
Michael Valentine Jones (4/24/2012)
April 25, 2012 at 11:35 am
All of the steps you are identifying are definitely possible:
1 - No sense in using FOR XML, since you already have XML. Simply output that column.
2 - easiest way...
April 24, 2012 at 10:27 am
Is there a unique or primary key on the table? I've seen that type of error from applications where the datasets couldn't identify a unique key of some sort.
April 22, 2012 at 1:18 am
Viewing 15 posts - 1,006 through 1,020 (of 6,486 total)