Forum Replies Created

Viewing 15 posts - 1,156 through 1,170 (of 1,479 total)

  • RE: will DELETE deallocate used space as well ?

    Actually as far as I know when you delete records even if the page is empty, it will still belong to the table. Truncate table will release the pages....

  • RE: FOR XML PATH('') wierd results?

    I admit that I don’t know of a setting option that changes this behavior, but I would compare the setting options for both sessions and see if there is any...

  • RE: FOR XML PATH('') wierd results?

    Regarding the second question – This is because of the way that XML works. In any XML document (regardless if it was created by SQL Server or by another...

  • RE: upgrade sql 2000 to sql 2005 64BIT

    Upgrading 32 bit server to 64 bit server is not supported. You’ll need to install the 64 bit version and move the databases, logins, jobs, etc’ to the new...

  • RE: Problem to Restore the Backup frpm SQL Server 2005 to 2000

    You can’t restore a database to an older version of SQL Server then the SQL Server that the database was backed up from. If you have a backup that...

  • RE: Transaction log in a mirrored database environment

    The question that you should first ask your self is if the file will get to its current size again. For example if you checked the amount of free...

  • RE: Trigger Problem-Urgent

    GSquared (2/9/2009)


    GilaMonster (2/9/2009)


    Vijaya Kadiyala (2/9/2009)


    What if the table already exists, so in this case we have to use Update Statement right!!

    Why?

    Alter Table Add .... and add the computed column...

  • RE: Trigger Problem-Urgent

    GSquared (2/9/2009)


    Vijaya Kadiyala (2/9/2009)


    Thats really a good tip. This will work if you are creating a new table.

    What if the table already exists, so in this case we have to...

  • RE: Remove new line from cell

    Sorry for the late response. You can use only one replace function and in that function replace char(13) + char(10) with an empty string:

    SELECT replace(vc, char(13) + char(10), '')...

  • RE: Unable to change maxfilesize

    I’ve just checked it on my machine. It seems that if I modify the log file to have unrestricted growth, sp_helpdb does specify a limit, but it is a...

  • RE: Unable to change maxfilesize

    You have a typo (maxsie instead of maxsize) but I suspect that you had this only when you wrote the alter table in your message and not in the code...

  • RE: Remove new line from cell

    Yep, that was wrong. Thank you for the correction.

    Adi

  • RE: Restore

    The logins aren't stored in the user's database. They are stored in the master database. The users databases store users that are mapped to the login. You'll...

  • RE: Moving a large index file from 1 drive to another

    The best source for an answer to a question like this is Books On Lines. You can use the alter database statement to move files from one place to...

  • RE: Remove new line from cell

    You can use the queryout option in BCP which lets you export data according to a query instead of exporting a full table. In your query you have to...

Viewing 15 posts - 1,156 through 1,170 (of 1,479 total)