Viewing 15 posts - 36,601 through 36,615 (of 49,562 total)
Please don't cross post. It just wastes peoples time and fragments replies.
No replies to this thread please. Direct replies to: http://www.sqlservercentral.com/Forums/Topic782083-359-1.aspx
September 3, 2009 at 6:10 am
SELECT < Column list >,
CASE WHEN AuthorDate IS NULL THEN '' ELSE 'Last Upload: ' + CONVERT(VARCHAR(30), AuthorDate, < Appropriate formatting code >) END
FROM Documents
September 3, 2009 at 5:31 am
Damien (9/3/2009)
I already did that but unfortunately the record I want is not on that backup.
Got an older backup?
Can I use .Log? to Rollback deleted rows.
You can try a log...
September 3, 2009 at 4:38 am
No. An identity can be set to start at any number and increment by any fixed interval.
I do have to ask, why do you want values like this?
September 3, 2009 at 4:23 am
Well, I'm not a DBA anyway but...
Probably as a web or front-end developer. I still enjoy coding. I was half-planning some years back on going back to dev. A friend...
September 3, 2009 at 4:18 am
Sudeepta (9/3/2009)
September 3, 2009 at 3:53 am
Sudeepta (9/3/2009)
September 3, 2009 at 2:37 am
sql_lock (9/3/2009)
Dave Ballantyne (9/3/2009)
GilaMonster (9/1/2009)
I've seen a SQL Server brought to its knees by an admin copying a large backup file off the server.
My favourite is the over eager virus...
September 3, 2009 at 2:26 am
Did you add a location or did you replace the location with the new one?
If you added a location then you're asking the backup to be striped across the two...
September 2, 2009 at 3:02 pm
igngua (9/2/2009)
it says syntax error.
Brackets around the select shouldn't be there.
September 2, 2009 at 2:48 pm
igngua (9/2/2009)
I dont know why this trigger aint working.
What do you mean by 'not working'? What's it not doing that it should be?
September 2, 2009 at 2:37 pm
Please read through this - http://www.sqlservercentral.com/articles/SQLServerCentral/66909/
September 2, 2009 at 2:11 pm
SQL Guy (9/1/2009)
Is there anything we can do to reduce locking time or completely eliminate it ? Are there any techniques, tricks to do this ?
Maybe.
Can you read through this...
September 2, 2009 at 2:03 pm
dsdeming (9/2/2009)
Doesn't selecting into a temp table (SELECT * INTO #a FROM whatever) lock tempdb for the duration of the operation?
That used to be true, somewhere around version 6.5.
September 2, 2009 at 2:01 pm
Viewing 15 posts - 36,601 through 36,615 (of 49,562 total)