Viewing 15 posts - 3,031 through 3,045 (of 14,953 total)
randy.worrell (10/27/2011)
October 28, 2011 at 10:57 am
randy.worrell (10/26/2011)
October 28, 2011 at 10:55 am
Are you exporting to Excel or something like that?
If so, you'll need to start over with a blank file, or use the existing "table" (sheet) in the Excel file.
October 28, 2011 at 10:41 am
Here's a sample of how to do it with the exist() function.
IF OBJECT_ID(N'tempdb..#T') IS NOT NULL
DROP TABLE #T ;
CREATE TABLE #T
(ID...
October 28, 2011 at 9:48 am
I'd have to see the table definition and a sample of the XML in it before I could help much.
October 28, 2011 at 8:15 am
Do you want a binary conversion, or an explicit string conversion.
E.g.:
SELECT CAST('Hello world' AS VARBINARY(100));
Gives: 0x48656C6C6F20776F726C64
That's a binary conversion. Reverse it:
SELECT CAST(0x48656C6C6F20776F726C64 AS VARCHAR(100));
And you get: Hello world
A literal...
October 28, 2011 at 7:26 am
GilaMonster (10/28/2011)
GSquared (10/28/2011)
October 28, 2011 at 7:14 am
GilaMonster (10/28/2011)
Kiara (10/28/2011)
October 28, 2011 at 6:50 am
Kiara (10/28/2011)
WayneS (10/27/2011)
Kiara (10/27/2011)
Stefan Krzywicki (10/26/2011)
Kiara (10/26/2011)
Droid Bionic here. I have an iPad2 - and I just don't like it all that much.
What dont you like about it? Everyone...
October 28, 2011 at 6:49 am
Tom Brown (10/27/2011)
Its been a while since I've been active in "the thread".
Sorry to barge in throwing you off the important subjects of phone choice and how...
October 28, 2011 at 6:42 am
Glad we could help.
October 28, 2011 at 6:29 am
In 11 years of DBAing, I've only ever been the server admin also once.
Had admin rights at the OS level? Yeah. Usually, even.
Been responsible for applying Windows patches,...
October 27, 2011 at 12:21 pm
Viewing 15 posts - 3,031 through 3,045 (of 14,953 total)