Viewing 15 posts - 9,511 through 9,525 (of 26,489 total)
vibhu22oct (9/17/2012)
Hi,Please tell me how can I check column comments or description of column in SQL Server.
Regards
Vibhu
A little vague as I am not quite sure what you are asking here.
September 17, 2012 at 11:04 am
I still doubt that ecommerce sites use your email address as a primary key. This is a volitale attribute subject to change, and isn't one I would use. ...
September 17, 2012 at 10:45 am
September 17, 2012 at 9:31 am
As Sean said, TRUNCATE is a logged operation. TRUNCATE, however, does not fire DELETE triggers on tables. If you need to know who is deleting data from the...
September 17, 2012 at 8:07 am
eamonn.byrne (9/17/2012)
Jeff Moden (9/16/2012)
eamonn.byrne (9/14/2012)
Yep that definately works. It took you 5 seconds to fix what had me scratching my head for a couple of hours. :ermm:Cheers!
Before you use it,...
September 17, 2012 at 4:58 am
You would need to break the mirroring and reestablish it using the new port numbers.
September 15, 2012 at 9:17 pm
Also, after modifying your code to use the table variable provided by the OP, it only returned one row, not both rows (one with backscan = 0 and one with...
September 15, 2012 at 9:04 pm
CELKO (9/15/2012)
September 15, 2012 at 8:59 pm
stanlyn (9/15/2012)
Disregard my prev message. Looks like its sql server's inability to give accurate feedback in real time. Your process completed with the expected results and...
September 15, 2012 at 8:50 pm
CELKO (9/15/2012)
Oh, yes, VINs, good idea except it is only unique during a 30 year time span. That would be a great choice for a primary key to represent...
September 15, 2012 at 8:02 am
That's because of a bad cut and paste on my part:
with BaseData as (
select
county_pagekey,
image_tif as bin_data,
'TIF' as bin_type,
...
September 15, 2012 at 6:56 am
In a test environment, give this a try:
with BaseData as (
select
county_pagekey,
image_tif as bin_data,
'TIF' as bin_type,
...
September 14, 2012 at 11:01 pm
CELKO (9/14/2012)
That's a horrible idea. SSNs can change, so I suggest avoiding them for keys.
It was worse than that! First, the damn thing does not have a check...
September 14, 2012 at 8:53 pm
CELKO (9/14/2012)
Thank you for proving (once more) that you can't take the theory to the practice in a correct way. How can you suggest to use a random number...
September 14, 2012 at 8:48 pm
ScottPletcher (9/14/2012)
Better still, just always use 'YYYYMMDD[ 24h:mm:ss.sss]', which always works, regardless of SQL settings.'20120427'
Problem is you don't always have that choice.
September 14, 2012 at 7:48 pm
Viewing 15 posts - 9,511 through 9,525 (of 26,489 total)