Forum Replies Created

Viewing 15 posts - 76 through 90 (of 246 total)

  • RE: How to restore master database.?

    If we restore the user databases after the system databases how will we know which database the user is mapped and what role he has.

  • RE: how to find and turn off a trace flag

    Did you check the effected object.

    DBCC TRACESTATUS(-1) check all trace status

    DBCC TRACEOFF(1807, 3604) off trace 1807 and 3604

  • RE: How to restore master database.?

    Abhay

    Will all logins , users, roles will be restored.

    Should be restore the user database before master , model and msdb if a server crash occurs and you are creating an...

  • RE: Alert Database creation

    Is this possible in express edition.

  • RE: MDF Size Shrunk

    You will not loose any data.

    Its just that your data file is of 200GB and there is no free space available.So no matter how much you shrink the files it...

  • RE: How to find out free space in LOG .?

    San (6/28/2009)


    Dear All,

    One person asked me the following questions in an interview. Pls help.

    1. Suppose I have 2 servers. Firt one is with 2GB RAM and the second one...

  • RE: Export/Import

    If have to keep both the table data in the same database its better to create table1_New.

    to query both table1 and table1_new use join table with where clause.

    You cannot add...

  • RE: Policy-based Management

    _ (underscore) : def : Any single character.

    example:

    WHERE au_fname LIKE '_ean' finds all four-letter first names that end with ean (Dean, Sean, and so on).

    use

    Not like 'sp[_]%'

  • RE: Export/Import

    If you have primary key then you will have unique key constraint .

    So check the data that you are import to the column having PK constraint has no values that...

  • RE: Which is Better

    I want to fetch one row at a time and then satisfy the conditions following while @@row_count 0 and while @@fetch_status = 0 .

    Will using SELECT statement that assigns...

  • RE: Which is Better

    are both same.

    can you give me some example.

  • RE: Why Cursors so bad

    Lynn Pettis (6/25/2009)


    Have you read the articles that I asked you to read yet in my post above? If not, please go read them.

    I know he is slow and...

  • RE: error Msg 141

    .

  • RE: Why Cursors so bad

    How to avoid clustered and non-clustered index Scan's and also table scans.

    Which is better if i do not need to update cursor result set:

    DECLARE c1 CURSOR

    or

    DECLARE c1 CURSOR READ_ONLY

    or

    DECLARE c1...

  • RE: Converting non-clustered index to clustered index

    Hi jeff,

    The story is i have non-clustered PK .

    I want to make this non-clustered PK to clustered PK in sql server 2000 because it will improve performance i guess.

    When i...

Viewing 15 posts - 76 through 90 (of 246 total)