Forum Replies Created

Viewing 15 posts - 121 through 135 (of 295 total)

  • RE: Data Conversion help

    Just adapted a function I have to strip different characters, this won't give you a small int, but do you really need this to be a small int. Where I...

    Facts are stubborn things, but statistics are more pliable - Mark Twain
    Carolyn
    SQLServerSpecialists[/url]

  • RE: Email Notifications

    Did you set the properties of SQL Server Agent Alert System to Enable the mail profile you set up?

    Right click on SQL Server Agent, Select Alert System and ensure...

    Facts are stubborn things, but statistics are more pliable - Mark Twain
    Carolyn
    SQLServerSpecialists[/url]

  • RE: Variable within SQL string not recognized

    I think you may also need to convert the ''''00000000-0000-0000-0000-000000000000 into an uniqueidentifier as well to compare them.

    DECLARE @compid UNIQUEIDENTIFIER

    SET @compid = CONVERT(UNIQUEIDENTIFIER,'00000000-0000-0000-0000-000000000000')

    AND ([KeyId] = '''+@KeyId+''' OR +'''CONVERT(UNIQUEIDENTIFIER,@KeyId)+''' = '''+@compid...

    Facts are stubborn things, but statistics are more pliable - Mark Twain
    Carolyn
    SQLServerSpecialists[/url]

  • RE: Variable within SQL string not recognized

    alter PROCEDURE AppLog_AdHoc

    @Severity INT = ''

    ,...

    Facts are stubborn things, but statistics are more pliable - Mark Twain
    Carolyn
    SQLServerSpecialists[/url]

  • RE: Unable To See (Select) Days Option In Setting Up Maintenance Plan

    I haven't worked with SQL 2000 for quite a while but I remember seeing this before. If I remember correctly I dropped the job restarted SQL Server and tried setting...

    Facts are stubborn things, but statistics are more pliable - Mark Twain
    Carolyn
    SQLServerSpecialists[/url]

  • RE: Unable to get email from Databasemail

    Does sending a test email work? If it does did you set the properties of SQL Server Agent Alert System to Enable the mail profile you set up?

    Facts are stubborn things, but statistics are more pliable - Mark Twain
    Carolyn
    SQLServerSpecialists[/url]

  • RE: Schedule a nightly restore of a backup?

    I had a quick look around for articles on setting up log shipping, I have documentation for how I set it up but I need a warm standby server so...

    Facts are stubborn things, but statistics are more pliable - Mark Twain
    Carolyn
    SQLServerSpecialists[/url]

  • RE: Schedule a nightly restore of a backup?

    Have you looked at the built in Log Shipping that comes with SQL Server as this could be used to set all the process up for you.

    Facts are stubborn things, but statistics are more pliable - Mark Twain
    Carolyn
    SQLServerSpecialists[/url]

  • RE: Adding column values together

    Try something like

    =IIf (sum(Fields!Terminations.Value + Fields!TransferOut.Value + Fields!HeadcountEnd.Value) = 0, 0,sum(Fields!Terminations.Value + Fields!TransferOut.Value + Fields!HeadcountEnd.Value))

    Facts are stubborn things, but statistics are more pliable - Mark Twain
    Carolyn
    SQLServerSpecialists[/url]

  • RE: Rather critical perfomance issue

    How did you do the migration? have the databases been reindexed after the migration?

    Facts are stubborn things, but statistics are more pliable - Mark Twain
    Carolyn
    SQLServerSpecialists[/url]

  • RE: Task for Zipping Files?

    See http://www.sqlservercentral.com/articles/SSIS/64028/

    Facts are stubborn things, but statistics are more pliable - Mark Twain
    Carolyn
    SQLServerSpecialists[/url]

  • RE: Problem related to deletion of data from table using like key word

    you've missed out the FROM

    delete FROM tableName where path like '''%'+@path +'%'''

    try to see if it will delete the correct record using a select statement first to test.

    Facts are stubborn things, but statistics are more pliable - Mark Twain
    Carolyn
    SQLServerSpecialists[/url]

  • RE: Slack SQL Server

    The fuzzy match that's in SSIS would be useful to use in some way on selecting data, Full Text just doesn't do it well enough.

    Facts are stubborn things, but statistics are more pliable - Mark Twain
    Carolyn
    SQLServerSpecialists[/url]

  • RE: High deadlock frequency in OperationsManager database, SCOM 2007

    Down load a trial of SQL Sentry if a deadlock fires it should give you the items that are in the chain of events. http://sqlsentry.net/sql-performance

    Facts are stubborn things, but statistics are more pliable - Mark Twain
    Carolyn
    SQLServerSpecialists[/url]

  • RE: Transfering Login's between sql2000 and sql2005

    There is a script to do just this on the microsoft site look for sp_helprevlogin in google

    Facts are stubborn things, but statistics are more pliable - Mark Twain
    Carolyn
    SQLServerSpecialists[/url]

Viewing 15 posts - 121 through 135 (of 295 total)