Forum Replies Created

Viewing 15 posts - 1,951 through 1,965 (of 5,103 total)

  • RE: help on table locking

    IS GRANT can be safely disregarded.

    Some times large queries generate those tempdb tables that you are expericencing. If you run dbcc inputbuffer(SPID) it may show the last command or...


    * Noel

  • RE: Tracking Stored Procedures

    the problem with tracking the App that called the procedure is not an easy one because the connection string takes whatever you pass to it


    * Noel

  • RE: Concatenate varchar fields in call to stored procedure??

    You just discovered the problem with "text" fields


    * Noel

  • RE: 32-bit connectivity to SQL2K5 (Ent. 64-bit)

    can you change the "named" instance port ?

    1433 should be used for the "default" instance.


    * Noel

  • RE: Can you grant SA privs to a stored proc?

    I have used the proxy_account in the pass successfully and by limiting the windows rights that the account enjoys I don't see problems in using xp_cmdshell.

    In 2005 there is...


    * Noel

  • RE: Log Shipping - primary server renamed

    Really? So you rename a machine and you won't restart it ?


    * Noel

  • RE: Current identity value

    Ok Because of that *same* reason we don't use IDENTITY columns. But if your recovery time allows you to run dbcc checkident, that, is how you do it. We just...


    * Noel

  • RE: DBA Responsibilities.

    I used to do *full* code reviews also but now with the amount of code that goes/changes daily on my new job that is simple not possible. Developers do their...


    * Noel

  • RE: Current identity value

    Why are you worried about the current_identity value on the replica if it is supposed to be read-only ?


    * Noel

  • RE: BCP across systems

    Basicaly you can call bcp from dynamic SQL too so anything you do with BULK INSERT should be possible with BCP. Am I missing something ?


    * Noel

  • RE: Question of the Day for 29 Jun 2007

    And the trickiest part is that being member of db_backupoperator is not enough because you could have DENY on Backup Database statement on the DB.


    * Noel

  • RE: Cross row query / join / arithmetic

    no need for inline views just use directly the table:

    select v1.[name],v1.[year]+'/'+v2.[year] as period ,v1.number1+v2.number1,v1.number2+v2.number2

    from t1 v1

    join t1 v2

    on v1.[name]=v2.[name] and convert(int,v1.year) = convert(int,v2.year)+1


    * Noel

  • RE: Issue with function/subquery

    the content of your function maybe refering to a database that either does not exists or is not online. Can you post the function Definition ?


    * Noel

  • RE: Locking question

    If you are so concerned about 2000 forum why are you talking about database mirroring ?

    Do you have an SQL Server 2000 database mirroring solution? ...


    * Noel

  • RE: row_number and variable for sorting

    you must cast all sorting columns to the same data type.

    try changing :

     when 'job_desc' then job_desc

       else job_id...


    * Noel

Viewing 15 posts - 1,951 through 1,965 (of 5,103 total)