Forum Replies Created

Viewing 15 posts - 5,506 through 5,520 (of 6,595 total)

  • RE: SQL Server Agent

    What do you get from SELECT @@servername;

  • RE: SQL Server Agent

    Well, I am not sure about that - let me take a look around and see if I can find something.

    Generally, I have found the best method is to just...

  • RE: SQL Server Agent

    How exactly did you get those maintenance plans onto the new 2008 system? Did you restore the msdb database from the 2005 system to the 2008 system?

    If so, then...

  • RE: Primary Key violation in a stored proc temp table

    Using read uncommitted is the same as using (NOLOCK) - and, you are finding out exactly why this is not something that you do to work around issues.

    There are several...

  • RE: Execute prmissions on Stored procedures

    For a simpler method, you can grant execute privileges on a schema. For example:

    GRANT EXECUTE ON SCHEMA::dbo TO {role or user};

    Now, if someone creates a new procedure - you...

  • RE: SQL Server Services

    Using Powershell installed on any system that has network access:

    PS> Get-WMIObject Win32_Service -computer {computer} | ? {$_.Name -like 'MSSQL*'} | Select Name, State

    You can then extend this to send email...

  • RE: Maintenance Plan not deleting physical backup file

    In 2005 - you have to add the Maintenance Cleanup Task to the maintenance plan and configure it. Sounds to me like that does not exist in the plan...

  • RE: Using a variable with IN

    Glad I could help and you were able to get something to work.

  • RE: Using a variable with IN

    ehlinger (3/1/2009)


    Jeffrey,

    You aren't missing anything. I just didn't explain the whole picture well enough. The reason it won't work to do filtering on the adjustments table is because...

  • RE: Using a variable with IN

    I really don't understand why you even need the #PointPartners table. Since all you are doing is filtering that table where the AdjustmentName is like 'PP_%' - and, you...

  • RE: Passing a #TempTable and running an ALTER ADD on it

    I think I understand what you are trying to do, but I am not sure it is needed. Can you just create a new formatter procedure with the new...

  • RE: Query Help

    barunpathak (2/27/2009)


    No..still not getting what i wanted to...

    Okay, so what have you tried and why does it not work? Read the article in my signature and post some create...

  • RE: dynamically determine parameter values

    I ran into this issue before and found the only way to get this information was to get it from a server side trace. I was not able to...

  • RE: a SQL statement with a large number of comparisons in WHERE...

    Okay - wasn't sure, but since your are on SQL Server the EXCEPT operator is available and can be used.

  • RE: t-sql question!!

    SELECT REPLACE(col2, '\' + col1, '');

Viewing 15 posts - 5,506 through 5,520 (of 6,595 total)