Viewing 15 posts - 42,601 through 42,615 (of 49,571 total)
Please don't create new threads for existing problems. There have been lots of answers to your questions on the other thread you started on this.
Please continue discussion on the following...
December 4, 2008 at 11:09 am
Take a look at line 123 of the procedure abc_Activity_Inquire. There's an insert statement there that's one half of the deadlock.
The other half is a piece of dynamic sQL somewhere...
December 4, 2008 at 10:46 am
declare @test VARCHAR(20)
SET @test = 'resumé'
select @test
There's a difference between extended ASCII and unicode.
December 4, 2008 at 10:08 am
Sanaullah (12/3/2008)
The SQL Server has been optimized for 8 concurrent query. This Limit has been exceededby 1 query and performance might be adversely affected.
You've got MSDE there. (free, restricted version...
December 4, 2008 at 9:56 am
Why a trigger to move data from one database to another?
That trigger's got a cross join in it. You have no join between the inserted table and the main table....
December 4, 2008 at 9:51 am
Simon Smith (12/4/2008)
December 4, 2008 at 9:47 am
Skull Killer (12/4/2008)
Because it has to "reserve" and then destroy the structure in the temp database and it does the COMMITs.
Same with a table variable. Main difference is that...
December 4, 2008 at 9:41 am
The only way you can backup a single table is if that table is in a filegroup by itself. Then you can back up the filegroup.
You can backup at the...
December 4, 2008 at 9:33 am
and no [] inside the IF, because you're trying to do a string match there, not refer to the DB itself.
December 4, 2008 at 9:31 am
What's the code you're trying to run inside sp_MSforeachdb?
December 4, 2008 at 9:19 am
Full backups do not break the LSN chain.
Easy to demonstrate
Create database TestingLogs
Go
use TestingLogs
go
Create Table Test (id int)
insert into Test values (1)
go
backup database TestingLogs to disk = 'D:\Develop\TestingFull1.bak' -- full backup...
December 4, 2008 at 9:13 am
Three steps backwards....
When data is changed in SQL, the changes are made to the data pages in memory. The record of the change is then written to the transaction log...
December 4, 2008 at 9:05 am
Skull Killer (12/4/2008)
That's true. But creating a temp table, even with no data, costs more than a table variable.
Why?
December 4, 2008 at 8:02 am
Phil Auer (12/4/2008)
I'm still not clear on the issue. This video talks specifically about only full backups and transaction log backups.
I'll download the video later, watch it and see...
December 4, 2008 at 8:00 am
srawant (12/2/2008)
I have a same database in one of my pre-prod server which is currently dead. I can work on this server to fix the database. So, can you...
December 4, 2008 at 1:33 am
Viewing 15 posts - 42,601 through 42,615 (of 49,571 total)