Forum Replies Created

Viewing 15 posts - 1,126 through 1,140 (of 2,462 total)

  • RE: SQL 2008 Query - not running

    it might be because of schema/definition discrepancy.i ran you script on my system it doesn't show any issue/error related to sql 2008

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

  • RE: Instance = "BkupExec" Error

    Did you that exe restart it again ?

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

  • RE: execute procedure on all databases

    this link can help you to apply any sql script on multiple DBs one time

    http://www.ssmstoolspack.com/

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

  • RE: SQL tool for optimizing stored procs

    Bill "Bojangles" Robinson (12/17/2010)


    are there any tools that can go through all the stored procedures on the server and automatically build showplan that can help us identify table scans and...

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

  • RE: transfer data from one database to another database

    duplicate post reply here http://www.sqlservercentral.com/Forums/Topic1036335-391-1.aspx?Update=1

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

  • RE: transfer data from one database to another database

    gupta.sreekanth (12/16/2010)


    hi,

    can any one tell how to transfer data from a table in one database to another table in another database.....if any one knows....please write sample query for...

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

  • RE: transfer data from one database to another database

    removed

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

  • RE: Clearing adhoc plans from the memory CACHESTORE will be useful for the data buffer memory

    Are you observing any memory pressure ?

    because Clearing the plan cache causes a recompilation of all subsequent execution plans and can cause a sudden, temporary decrease in query performance.

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

  • RE: Wrong "row_number" behaviour

    Thanks i got the point

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

  • RE: Bad SQL Jokes

    Don't trust DBAs trust "F5"

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

  • RE: Connection to database is failed

    dilipd006 (12/13/2010)


    thanks for the reply..the connection string is same

    It means that application is able to connect with sql server but it throws error inside it so i think debugging application...

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

  • RE: De-normalize or index?

    On safer side i would say create some relevant indexes otherwise you can De-normalize some tables and then put some indexes.

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

  • RE: Date Conversion

    instead you should keep '1900-01-01' for '000000'

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

  • RE: stock

    though your requirement is not so clear but still i tried

    declare @t table (

    item_id int,

    dates datetime,

    qty int ,

    Amount int ,

    Status char(1)

    )

    insert into @t (item_id,dates,qty,Amount,Status)

    select 1, '10/10/2010', 10, 250,...

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

  • RE: Create Delete Stored Proc with dependencies

    wannalearn (12/13/2010)


    Thank you. I was trying to delete parent first. It works now.

    May be syntactically it works but from business perspective child table should contains any records associated or...

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

Viewing 15 posts - 1,126 through 1,140 (of 2,462 total)