Forum Replies Created

Viewing 15 posts - 42,601 through 42,615 (of 49,571 total)

  • RE: ntext to nvarchr(max)

    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...

  • RE: Deadlock occured?

    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...

  • RE: varchar versus nvarchar

    declare @test VARCHAR(20)

    SET @test = 'resumé'

    select @test

    There's a difference between extended ASCII and unicode.

  • RE: I am getting the below error.

    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...

  • RE: ntext to nvarchr(max)

    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....

  • RE: Error message looking at sysdatabases

    Simon Smith (12/4/2008)


    If anyone can tidy everything up and work out why it the error message at the beginning references a database name that doesn`t exists then that would be...

  • RE: Proc is giving poor performance

    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...

  • RE: Partial Backup

    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...

  • RE: Error message looking at sysdatabases

    and no [] inside the IF, because you're trying to do a string match there, not refer to the DB itself.

  • RE: Error message looking at sysdatabases

    What's the code you're trying to run inside sp_MSforeachdb?

  • RE: Questions about full database backup

    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...

  • RE: Backups and Transactions Log relationships

    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...

  • RE: Proc is giving poor performance

    Skull Killer (12/4/2008)


    That's true. But creating a temp table, even with no data, costs more than a table variable.

    Why?

  • RE: Questions about full database backup

    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...

  • RE: Integrity Check -- DBCC

    srawant (12/2/2008)


    Hey Gail,

    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...

Viewing 15 posts - 42,601 through 42,615 (of 49,571 total)