Viewing 15 posts - 3,961 through 3,975 (of 7,168 total)
The 0x is how SSMS displays a binary column. It shows it as a hex-value for benefit of us humans. Internally it is only 0's and 1's.
May 24, 2012 at 3:55 pm
Hmmm, can you store hexadecimal or base64 data in a binary column, hmmm :Whistling:
Did it help to re-read that?
May 24, 2012 at 3:34 pm
It would help immensely if you were to provide the DDL for the destination table, and a representative sample of the data that would reside in that table using the...
May 24, 2012 at 3:31 pm
SQL Server is unaware of the image format. You could store a Word doc or a PDF in a VARBINARY(MAX) column for all it cares. The bits are stored in...
May 24, 2012 at 3:26 pm
:exclamation: Note: this is a year-old thread.
May 24, 2012 at 3:18 pm
Koen Verbeeck (5/24/2012)
opc.three (5/24/2012)
May 24, 2012 at 3:16 pm
I'll second, third, and fourth that...education, education, education!
If that is a lost cause, I know it was in some shops where I have been, you might look into enabling...
May 24, 2012 at 2:37 pm
It is a function, not a global variable. Try it like this:
return SCOPE_IDENTITY()
May 24, 2012 at 2:25 pm
This may help:
SELECT TOP 10
DB_NAME(x.dbid) AS db,
OBJECT_SCHEMA_NAME(x.objectid, x.dbid) AS schemaname,
...
May 24, 2012 at 1:16 pm
Drenlin (5/24/2012)
I have enough understanding to play further.
By all means dig in and learn the internals but there is no sense in re-inventing the wheel. May I recommend a solution...
May 24, 2012 at 10:04 am
Koen Verbeeck (5/24/2012)
opc.three (5/23/2012)
MisLead (5/23/2012)
May 24, 2012 at 10:01 am
What bruce provided is exactly what I described. You can use the Split-Path cmdlet to get the directory names as you move thorugh the collection of data and log files....
May 24, 2012 at 7:43 am
sqlfriends (5/23/2012)
Thanks, so when in what situations we should run update usage?
Read the Remarks section here: DBCC UPDATEUSAGE
May 23, 2012 at 3:37 pm
sqlfriends (5/23/2012)
Thanks, does udpateUsage need to be run after I changed the database compatiblity from 2005 to 2008?
No, compat mode is not a concern for udpateUsage.
I see it uses statistics...
May 23, 2012 at 2:59 pm
Viewing 15 posts - 3,961 through 3,975 (of 7,168 total)