Viewing 15 posts - 7,291 through 7,305 (of 14,953 total)
I've seen Windows do that before. The only solution I've ever seen work was a reboot.
December 30, 2009 at 8:53 am
subs99 (12/30/2009)
Jack Corbett (12/30/2009)
Interesting question. I use sa and, interestingly enough, Tibor Karaszi has a blog post about this exact question today. Check it out.
Errr... I'm pretty sure...
December 30, 2009 at 8:52 am
I did the same thing again, assigning the XML to a variable, then querying against the variable.
See if this gets you going in the right direction:
select
G.test.query('.'),
T.comp.query('.')
from @XML.nodes('gomez_data/monitor/test') G(test)
cross apply...
December 30, 2009 at 8:50 am
It means it's not a space in the final position. Might be a tab, or something similar.
Select the ASCII value of the third character, look that up, you'll find...
December 30, 2009 at 8:42 am
The error you're getting says you have data conversion issues. Take a look a the columns referenced in the error message and see what data type they are. ...
December 30, 2009 at 8:39 am
Have you tried putting it in a .bat (batch) file and calling that? That's what I usually do with anything more complex than a dir command.
December 30, 2009 at 8:37 am
Jeff Moden (12/30/2009)
Posers (heh... I hate them and the moroffs that allowed them through the interview).
I like posers. Well, as long as they're good looking and the pose is...
December 30, 2009 at 8:34 am
I prefer to create a domain account for that, domain\SQLBackups. Give it rights to the backup directories, give it rights in SQL, and be done with it.
December 30, 2009 at 8:32 am
It means the column you are creating the index on is defined to take 2000 bytes of data. The warning won't go away unless you redefine the column. ...
December 30, 2009 at 8:30 am
I'd have to see a sample of the XML to be able to help with the query.
December 30, 2009 at 8:25 am
Here's what I come up with for this one:
declare @XML XML;
select @XML = ' <test>
<node>Newark, NJ - Qwest</node>
...
December 30, 2009 at 7:38 am
Is there a reason you're not just using the For XML clause on a select query? That would do what you're looking for, and would do it much more...
December 30, 2009 at 7:24 am
James Stover (12/30/2009)
I could go on indefinitely. Everything you do carries risks. Every human endeavor is subject to refinement over time and use. What makes you think...
December 30, 2009 at 7:21 am
Jeff Moden (12/29/2009)
GSquared (12/29/2009)
What makes you think computer software can be different?
What's ironic about that statement is that all software boils down to only two parts... 1's and 0's. ...
December 30, 2009 at 7:10 am
GilaMonster (12/29/2009)
GSquared (12/29/2009)
December 29, 2009 at 11:19 am
Viewing 15 posts - 7,291 through 7,305 (of 14,953 total)