Forum Replies Created

Viewing 15 posts - 151 through 165 (of 2,462 total)

  • RE: logshipping

    4 years old thread

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

  • RE: SQLServerCentral Changes - Oct 2013

    Any plan to release the mobile APP for this ?

    I constantly use this site on my mobile but its very heavy and often end with no...

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

  • RE: TEMPDB is growing to 400GB

    index renuild / reorganize job or maintenance done with option (SORT_IN_TEMPDB = ON)

    OR

    ONLINE = ON

    ?

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

  • RE: Outer Apply and Cross Apply performance hits

    SPs/Queries also behave bad when Spooling or work table comes in picture for heavy data temporary storage during intermediate stages. so to avoid this you can use temp table...

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

  • RE: how to update column city value from 'A' to 'B' and 'B' to 'A' in single query

    The question asked to OP by interviewer was probably like

    "flip the values from A to B and B to A "

    was actually answered by...

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

  • RE: Filter Countries, States and Cities which in same row in one table.

    Jeff Moden (10/8/2013)


    Gosh, I wouldn't rely on that nuance especially for the sake of clarity.

    Thanks Jeff for keeping close eye on all the replies , it actually helps...

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

  • RE: Beginner, Expert, or Both?

    Jeff Moden (10/8/2013)


    That's a HUGE problem with most employers and recruiters. They ask people to rate themselves. How can an honest person who rates themselves as a good...

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

  • RE: Beginner, Expert, or Both?

    Jeff Moden (10/8/2013)


    I have been known to stop an interview after just one super simple question and trust me on this... the question is just absolutely stupid simple.

    Please share...

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

  • RE: Filter Countries, States and Cities which in same row in one table.

    ChrisM@Work (10/8/2013)


    SELECT * FROM TABLE WHERE countryid = @country

    SELECT * FROM TABLE WHERE countryid = @country AND stateID = @stateid

    SELECT * FROM TABLE WHERE countryid = @country AND stateID =...

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

  • RE: Filter Countries, States and Cities which in same row in one table.

    select * from TABLE where countryid = @country

    select * from TABLE where countryid = @country OR stateID = @stateid

    select * from TABLE where countryid...

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

  • RE: Sequential number sql hourly tl backups

    READ AND TEST it CAREFULLY :exclamation:

    IF EXISTS (SELECT [name] FROM dbo.sysobjects WHERE [name] = 'usp_Admin_Delete_Files_By_Date' AND TYPE = 'P')

    DROP PROCEDURE dbo.usp_Admin_Delete_Files_By_Date

    GO

    CREATE PROCEDURE dbo.usp_Admin_Delete_Files_By_Date (@SourceDir varchar(1024), @SourceFile varchar(512), @DaysToKeep int)

    -- EXEC...

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

  • RE: Update statistics job is failing

    jasona.work (10/7/2013)


    Somehow a value of '16923951 0' got entered...

    while you insert value ( '16923951 0' ) into it.

    it will throw error like "String , binary data would be...

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

  • RE: Transferring sql logins and whilst retaining User Mappings

    PearlJammer1 (10/7/2013)


    I wish to use a method that transfers the users password and BUT ALSO keeps their current database mappings and permissions.

    When we restore a backup to new...

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

  • RE: error when add and update in sp

    karunakar2351 (10/7/2013)


    ALTER TABLE t ADD x char(1)

    BUt why the same column should get added with EVERY SP call ?

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

  • RE: Alert not going away!!!

    There is some alert/job running on destination server (or may be at source database) which is throwing this alert.

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

Viewing 15 posts - 151 through 165 (of 2,462 total)