Forum Replies Created

Viewing 15 posts - 1 through 15 (of 36 total)

  • RE: Change the Settings of a Database Object Using Powershell

    You are correct, Jeff. My script will be useful for the database objects which are created in older SQL versions and left unmodified and these objects throw error when the...

    Regards,
    Ravi.

  • RE: ISNUMERIC

    But right people will concentrate on the question and not on the title.

    It is nice question...

    Regards,
    Ravi.

  • RE: Matching Missing Field

    +1

    Very intelligent question...

    Regards,
    Ravi.

  • RE: Number of Rows

    I selected "0" and got wrong.

    I think it is because 1 row in the system table is being affected and that is the reason the messages tab shows "(1 row(s)...

    Regards,
    Ravi.

  • RE: STR

    Yes, my question is different from the one posted on the site. I think it is Steve who changed the question.

    Regards,
    Ravi.

  • RE: Script through which we cannot store data into ldf file

    Transaction log is a critical component of the database system, if there is a system failure, the transaction log might be required to bring back the database to a consistent...

    Regards,
    Ravi.

  • RE: TLOG GROWING VERY LARGE

    Taking full backup once in a day is not enough, you need to take backup of transaction log as well to truncate the log file. Once the transaction log backup...

    Regards,
    Ravi.

  • RE: Backups

    Good question...

    Regards,
    Ravi.

  • RE: Administration

    SQL Kiwi (9/11/2012)


    The question didn't mention trace flag 610 (which would enable minimal-logging in this scenario) so I assumed it was off, and was rewarded with a green tick and...

    Regards,
    Ravi.

  • RE: Error While Creating a table

    Hi,

    SQL Server allows any character in the current code page to be used in a delimited identifier. For example, you can create a table with the name Employee], where the...

    Regards,
    Ravi.

  • RE: SQL Server 2008 Query Optimizing (alternate Method)

    Hi,

    Please look at the modified SQL below:

    DECLARE @item_id VARCHAR(MAX)

    SET @item_id = (SELECT metric_template_id FROM view_metric_template WHERE item_name = N'Hard Savings' AND template_name = N'Savings / Controller Validation')

    SELECT vh.parent_work_id...

    Regards,
    Ravi.

  • RE: Activity Monitor->Resource Waits->Wait Category "Other"

    Hi,

    "Other" is the wait category with all the miscellaneous wait types are categorized as 'unknown'. These waits occur for internal operations and no tuning is necessary to avoid such waits....

    Regards,
    Ravi.

  • RE: Can i INSERT a Column at the beginning?

    There are two ways you can add a column to the table:

    1. Table design (GUI)

    2. ALTER TABLE statement

    Using the table design you can add a column at any place and...

    Regards,
    Ravi.

  • RE: how to mapping data or transfering data from one server to another server here i am using sql 2008 r2?

    Hi,

    Create a linked server with "SomeLinkedServerName" on the Source SQL Server instance.

    and execute the below statement (on the same instance):

    INSERT INTO SomeLinkedServerName.DatabaseName.SchemaName.TableName

    SELECT * FROM SchemaName.TableName

    Regards,
    Ravi.

  • RE: Union and Union All

    nice one...

    Regards,
    Ravi.

Viewing 15 posts - 1 through 15 (of 36 total)