Forum Replies Created

Viewing 15 posts - 241 through 255 (of 405 total)

  • RE: Allocating huge space during restore.

    Original database must have contained unallocated space. Even though the data is only 2GB it will try to create the data and log file with original size specifications.

    ----------------------------------------------------------------------------------------------------------------------------------------------------
    Roshan Joe

    Jeff Moden -Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: MY LOG FILE'S SIZE REMAIN THE SAME

    You must have a regular log backup in place that truncate inactive portions of the log.

    You can use DBCC sqlperf('logspace') to find percent used for the log file

    ----------------------------------------------------------------------------------------------------------------------------------------------------
    Roshan Joe

    Jeff Moden -Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Process

    R u running trace? .

    Then stop it

    Select * from fn_trace_getinfo(null)

    ----------------------------------------------------------------------------------------------------------------------------------------------------
    Roshan Joe

    Jeff Moden -Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Process

    what is the lastwaitype in sysprocesses also take a not of hostname and program which is executing this query.

    ----------------------------------------------------------------------------------------------------------------------------------------------------
    Roshan Joe

    Jeff Moden -Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Can we have both SQL 2005 and 2008 client tools on the same PC?

    Sasidhar Pulivarthi (4/16/2010)


    Eswar U r right....

    Its not possible. I installed on my local machine...I installed SQL 2008 & then installed SQL 2005, SQL 2005 it installed as SQL express....

    Database...

    ----------------------------------------------------------------------------------------------------------------------------------------------------
    Roshan Joe

    Jeff Moden -Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Where is the backup log created?

    You are not backing up. The above command truncate the log file without backing up.

    ----------------------------------------------------------------------------------------------------------------------------------------------------
    Roshan Joe

    Jeff Moden -Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Process

    Just find out what query is running and what resource it is waiting for. Its OK for a process to go suspended unless it does not wait for too long

    ----------------------------------------------------------------------------------------------------------------------------------------------------
    Roshan Joe

    Jeff Moden -Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Backup a largedatabase

    You can use striped backup but its is sometimes risky

    Backup database database name to disk='C:\backupfile_1.bak',disk='D:\backupfile_2.bak','E:\backupfile_3.bak

    You need all these files for proper restore. Any corruption in single file can make the...

    ----------------------------------------------------------------------------------------------------------------------------------------------------
    Roshan Joe

    Jeff Moden -Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Removing identity property

    http://www.sqlservercentral.com/articles/T-SQL/61979/

    ----------------------------------------------------------------------------------------------------------------------------------------------------
    Roshan Joe

    Jeff Moden -Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Edition selection

    It might not be that easy but you can compare the features and create a template based on that. Few key concepts are resources supported, features available and budget.

    ----------------------------------------------------------------------------------------------------------------------------------------------------
    Roshan Joe

    Jeff Moden -Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: How do I tell if a server is cluster aware?

    If you have no issues with First node, (ie is ur first server is now acting as single node cluster), you are safe.

    ----------------------------------------------------------------------------------------------------------------------------------------------------
    Roshan Joe

    Jeff Moden -Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: How do I tell if a server is cluster aware?

    Did you read this link?

    http://msdn.microsoft.com/en-us/library/ms191545(SQL.90).aspx

    ----------------------------------------------------------------------------------------------------------------------------------------------------
    Roshan Joe

    Jeff Moden -Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: How do I tell if a server is cluster aware?

    Not clear enough. Can you please tell what you are trying to achieve?

    Are you trying to create a single node cluster?

    ----------------------------------------------------------------------------------------------------------------------------------------------------
    Roshan Joe

    Jeff Moden -Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Database stuck in restoring state after tail log backup

    If you put database in single user, and took the tail log backup, you might want to use the same window to execute further statements.

    However you can use sysprocesses...

    ----------------------------------------------------------------------------------------------------------------------------------------------------
    Roshan Joe

    Jeff Moden -Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: index issue

    Use dm_db_index_usage_stats view to get some idea regarding this. Note: this view is flushed on each restart

    ----------------------------------------------------------------------------------------------------------------------------------------------------
    Roshan Joe

    Jeff Moden -Forum Etiquette: How to post data/code on a forum to get the best help[/url]

Viewing 15 posts - 241 through 255 (of 405 total)