Forum Replies Created

Viewing 15 posts - 286 through 300 (of 2,462 total)

  • RE: Duties of a DBA

    see this http://www.johnsansom.com/the-database-administrators-primary-responsibility/

    -------Bhuvnesh----------
    I work only to learn Sql Server...though my company pays me for getting their stuff done;-)

  • RE: sql server mirroring synchronization not happening

    sqldban (3/5/2013)


    But synchronization not happening.i don't understand what was the problem.

    have you checkedt he statuses of morrored databases ? are they showing ("mirrored synchrnoized restoring...") ?

    -------Bhuvnesh----------
    I work only to learn Sql Server...though my company pays me for getting their stuff done;-)

  • RE: How to Convert Semi colon Separated Values into Column

    post the expected output based on your above data's example

    -------Bhuvnesh----------
    I work only to learn Sql Server...though my company pays me for getting their stuff done;-)

  • RE: Delete large data from live table

    komal145 (3/6/2013)


    when I delete , I don't want to affect the identity columns, how can we do it?

    Can you elaborate this ?

    -------Bhuvnesh----------
    I work only to learn Sql Server...though my company pays me for getting their stuff done;-)

  • RE: When would be the order by faster ?

    Thanks for this LATEST reply but this is 2 years old thread 😀

    -------Bhuvnesh----------
    I work only to learn Sql Server...though my company pays me for getting their stuff done;-)

  • RE: Just accepted a Sr. DBA job. Time for a gut check?

    First of all, in my 4 years of log relationship with SSC, i havent seen any newbie writing such a long post :-D.it clearly showing that you know that what...

    -------Bhuvnesh----------
    I work only to learn Sql Server...though my company pays me for getting their stuff done;-)

  • RE: Database Mail + sysmail_start_sp

    Bhuvnesh (3/6/2013)


    SELECT * FROM msdb.dbo.sysmail_event_log ;

    Have you used this ?

    -------Bhuvnesh----------
    I work only to learn Sql Server...though my company pays me for getting their stuff done;-)

  • RE: To find perfect expense?

    Please provide expected output too here with respect to the any effective date (from you sample data)

    -------Bhuvnesh----------
    I work only to learn Sql Server...though my company pays me for getting their stuff done;-)

  • RE: Database Mail + sysmail_start_sp

    Another thing,

    send a test mail to investigate the point of failure.

    Right click database mail –View database mail log to see error or we can SELECT * FROM msdb.dbo.sysmail_event_log...

    -------Bhuvnesh----------
    I work only to learn Sql Server...though my company pays me for getting their stuff done;-)

  • RE: Database Mail + sysmail_start_sp

    I recommend that you use Database Mail Configuration Wizard, the Database Mail Configuration Wizard provides a convenient way to manage Database Mail configuration objects and enables Database Mail.

    For more...

    -------Bhuvnesh----------
    I work only to learn Sql Server...though my company pays me for getting their stuff done;-)

  • RE: Transactions

    this can put more light here

    CREATE LOGIN login1 WITH PASSWORD = 'J345#$)thb';

    CREATE LOGIN login2 WITH PASSWORD = 'Uor80$23b';

    GO

    CREATE USER user1 FOR LOGIN login1;

    CREATE USER user2 FOR LOGIN login2;

    GO

    begin tran...

    -------Bhuvnesh----------
    I work only to learn Sql Server...though my company pays me for getting their stuff done;-)

  • RE: Disable AUTO_CREATE_STATISTICS and AUTO_CREATE_STATISTICS for all databases

    select 'ALTER DATABASE ' + Name + ' SET AUTO_UPDATE_STATISTICS OFF ' from sys.databases where database_id > 4

    Copy the result of above query in run window and...

    -------Bhuvnesh----------
    I work only to learn Sql Server...though my company pays me for getting their stuff done;-)

  • RE: Execution Plan - Key Lookup

    In simple words.

    Key/RID lookup means Non-clustered index is not covering all the participated columns in one query for one particular table. so optimizer choose the heap(RID) or clustered index(Key) for...

    -------Bhuvnesh----------
    I work only to learn Sql Server...though my company pays me for getting their stuff done;-)

  • RE: Query to get rows if value contains result of another query

    winmansoft (3/5/2013)


    Bhuvnesh (3/5/2013)


    winmansoft (3/5/2013)


    I have searching for a query that returns a row if column value contains result of another query. Its like "select * from table1 where col...

    -------Bhuvnesh----------
    I work only to learn Sql Server...though my company pays me for getting their stuff done;-)

  • RE: Query to get rows if value contains result of another query

    winmansoft (3/5/2013)


    I have searching for a query that returns a row if column value contains result of another query. Its like "select * from table1 where col contains(select col1...

    -------Bhuvnesh----------
    I work only to learn Sql Server...though my company pays me for getting their stuff done;-)

Viewing 15 posts - 286 through 300 (of 2,462 total)