Viewing 15 posts - 3,676 through 3,690 (of 8,416 total)
Always good to see this question - the myth that TRUNCATE TABLE is non-logged (and so cannot be rolled back) is a persistent one.
Quite clever using 2008-only syntax too -...
April 24, 2010 at 1:55 am
Can you explain a bit more about the reasons behind wanting to do this?
More information often results in better answers.
Some third party products allow object-level restore:
April 23, 2010 at 9:19 pm
Robert Davis (4/23/2010)
400 databases? On how many servers?
Terrifyingly, just the one it seems :blink:
April 23, 2010 at 9:09 pm
Exactly, Jeff. Doing is an important part of learning!
April 23, 2010 at 9:03 pm
Stefan_G (4/23/2010)
First of all, I totally agree that defensive programming practices should be used, and that relying on undocumented implementation details is bad. We have no disagreement there.
Sweet.
The problem is...
April 23, 2010 at 8:59 pm
WayneS (4/23/2010)
Looks to me like they've pretty much taken the entire site down!:w00t:
Whoa!!! Site under construction?!
Adam - what did you do? :w00t: 😎
April 23, 2010 at 8:07 am
Grant Fritchey (4/23/2010)
April 23, 2010 at 7:57 am
Include the alloc_unit_type_desc column from sys.dm_db_index_physical_stats in the output.
There will be one row for the normal IN_ROW data, and an extra row for either LOB_DATA (or possibly a ROW_OVERFLOW_DATA).
April 23, 2010 at 7:54 am
Grant Fritchey (4/23/2010)
INSERT INTO dbo.x (x.nodatetime)
I never knew you could specify a table alias (x) in the INSERT column list...how interesting.
April 23, 2010 at 7:03 am
Take a look at the ISDATE (Transact-SQL) function.
I can't think of a way to change the data type of the column at the same time if values exist that cannot...
April 23, 2010 at 6:15 am
WayneS (4/23/2010)
Good, fast job to all for getting this wrong righted!
Getting this copyright wrong righted, right - or wrong?
April 23, 2010 at 5:31 am
vmssanthosh (4/23/2010)
Please advise us for workarounds if any
Don't specify a column list on the INSERT statement:
insert into #temp --(a)
April 23, 2010 at 5:24 am
Having the system widely distributed adds some special considerations, but essentially the problem is the same as that faced by any locally-distributed system (e.g. a web farm) where records must...
April 23, 2010 at 3:29 am
Viewing 15 posts - 3,676 through 3,690 (of 8,416 total)