Forum Replies Created

Viewing 15 posts - 91 through 105 (of 116 total)

  • RE: HDD upgrade

    Unfortunately I don’t have any spare slots, I have total 4 of them out of which 2 are used for C Drive & 2 are used for...

    ------------
    Prakash Sawant

    http://psawant.blogspot.com

  • RE: How to get Table row count?

    This should help you.

    SELECT rows FROM sysindexes WHERE id = OBJECT_ID('<TABLE_NAME>') AND indid < 2

    ------------
    Prakash Sawant

    http://psawant.blogspot.com

  • RE: kill user

    Try killing it from EM.

     

    ------------
    Prakash Sawant

    http://psawant.blogspot.com

  • RE: Whats the right way to edit a webtask?

    sp_updatetask is provided for backward compatibility only, check BOL for more info.

    ------------
    Prakash Sawant

    http://psawant.blogspot.com

  • RE: Whats the right way to edit a webtask?

    Add the outputfile pramater in steps under webtask job .

    sp_runwebtask [ [ @procname = ] 'procname' ]

        [ , [ @outputfile = ] 'outputfile'

     

     

    ------------
    Prakash Sawant

    http://psawant.blogspot.com

  • RE: Replication architecture

    You are asking the hole architecture may be you should as questions related to db issues, then you might get some good tips on that.

     

    ------------
    Prakash Sawant

    http://psawant.blogspot.com

  • RE: Transactions across multiple databases

    if you are the only one who is updating the other table then you can pull the records in tmp table check the condition then if needed update the...

    ------------
    Prakash Sawant

    http://psawant.blogspot.com

  • RE: From full to simple mode

    If trace is enabled on the server then  you can find from that.

     

    ------------
    Prakash Sawant

    http://psawant.blogspot.com

  • RE: Stored procedure + truncate table

    create procedure ds_truncatetable(@tablename varchar(60))

    as

    exec ('truncate table '+@tablename)

    go

    ------------
    Prakash Sawant

    http://psawant.blogspot.com

  • RE: DB in ''''Suspect'''' state

    you can restore the backup on your current db itself or even drop & create db will also work in your case.

     

     

     

    ------------
    Prakash Sawant

    http://psawant.blogspot.com

  • RE: Dropping full-text

    Try seting recovery model to simple in db properties under options tab.

     

     

    ------------
    Prakash Sawant

    http://psawant.blogspot.com

  • RE: what''''s wrong with this code

    Try replacing "STANDBY" with "RECOVERY"

    OR

    Try replacing "DBO_ONLY" with "RESTRICTED_USER" as "DBO_ONLY" is available only for backward compatibility.

     

    ------------
    Prakash Sawant

    http://psawant.blogspot.com

  • RE: Renaming a SQL 7 HW Server

    If you are running SQL Server 7.0, after renaming the SQL Server machine, the SQL Server service will fail to start, with an error message "Your installation was corrupted or...

    ------------
    Prakash Sawant

    http://psawant.blogspot.com

  • RE: Cross Tab result set in SQL

    If the numbers of columns are going to be constant at all the time then cross tab is the most effective way of getting the result set.

    ------------
    Prakash Sawant

    http://psawant.blogspot.com

  • RE: Database to sql script?

    There are 3 ways as far as i can think.

    1. You can use dts to transfer the data from one server to another if they are on the same network.

    2. You...

    ------------
    Prakash Sawant

    http://psawant.blogspot.com

  • Viewing 15 posts - 91 through 105 (of 116 total)