Forum Replies Created

Viewing 8 posts - 1 through 8 (of 8 total)

  • RE: how I can know the SP that call my SP

    Thanks "mkeast",

    This example works ok.

    To supress the message from DBCC use:

    DBCC <<any>>  WITH NO_INFOMSGS

     

    Regards.

     

  • RE: distributed transaction in linkedservers

    Thanks Brian,

    I should wish a solution for this case, but at least I can explain to analysts the reason that isn't work in our developer environment.

    Im my production environment the distributed...

  • RE: Creating view thru stored proc ;-)

    Hi,

    Try this:

    create view vw_View_SP
    as

    select *

    from openrowset('SQLOLEDB','mySERVER';'SQLUser';'password',

      'myDataBase.dbo.usp_MyStoredProc @param=1')

     

    In my case this work fine.

    Regards

  • RE: Errors with Cursor in Stored Procedure

    Andrew

    I agree with you but in some cases the cursor is needed.

    I try to make anything without a cursor but ... UNHAPPLY ... sometimes ... it is...

  • RE: How to convert a column resultset in a row resultset?

    Thansk Aaron and Willian

    Its just what I looking for. I will test the both. We are right, I need a way of turn a list of values into a table of...

  • RE: get calling database name

    Hi Jennifer,

     

    I has the some trouble yesterday. I try use db_name() in all forms but allways return the same thing, the database the stored procedure is in.

    I solve this passing the...

  • RE: Overview of Performance

    Great article,

         Some times developers just think “my SPs are full functional", but, in most case, no attempt for performance or "locks". When deadlocks occur they just say "my...

  • RE: Troubles using sp_indexoption to disallow page and row locks

    Thanks Allen,

    I agree with you but my work is in government organization and there are more than 2000 users and several SPs running with this method. It's amazing since many tables should be change triggers...

Viewing 8 posts - 1 through 8 (of 8 total)