Forum Replies Created

Viewing 15 posts - 616 through 630 (of 757 total)

  • RE: Database Mirroring

    Thanks

  • RE: Database Mirroring

    Perry Whittle (2/4/2012)


    yes, it is possible. Are you using the mirroring GUI or T-SQL?

    Thanks

    I'm using the GUI

  • RE: Index Defrag Procedure - Michelle Ufford

    That has nothing to do with the procedure

  • RE: SQL Alerts

    Thanks

  • RE: SQL Alerts

    Ninja's_RGR'us (1/4/2012)


    derekr 43208 (1/4/2012)


    Ninja's_RGR'us (1/4/2012)


    Depends on what you call complete.

    I have a few jobs that save data to a perm table, then the last step of the job (no error...

  • RE: SQL Alerts

    Ninja's_RGR'us (1/4/2012)


    Depends on what you call complete.

    I have a few jobs that save data to a perm table, then the last step of the job (no error exit path), you...

  • RE: SQL Alerts

    MysteryJimbo (1/4/2012)


    Thats not possible from the job itself. I would create a stored procedure to do what you are after and include the results in an attachment using database...

  • RE: Format a Percentage

    Try this

    DECLARE @Sales DECIMAL (18,2)

    DECLARE @Commission ...

  • RE: Log Backup Sizes

    Thanks all

  • RE: Send Messages from SQL SERVER

    mahesh.dasoni (12/22/2011)


    Create a operator & then go to job properties->Notification->select email when job succeeds.

    The poster wants to be notified in the event of the job finishing and when it fails,...

  • RE: Send Messages from SQL SERVER

    SKYBVI (12/21/2011)


    first configure database mail

    then create a sql job

    inside job there is an option notifications

    write email id in that ...

    Regards,

    Skybvi

    Those options allow for send mail when job finishes or...

  • RE: No repeatetion of names?

    alishaik001 (12/21/2011)


    My actual query is:

    here Name is the fieldName and Employee is the TableName;

    SELECT Name FROM Employee GROUP BY Name HAVING ( COUNT(Name) >= 1 );

    From this query I got...

  • RE: No repeatetion of names?

    alishaik001 (12/21/2011)


    I get this by the following query:

    SELECT Column_Name FROM TableName GROUP BY Column_Name HAVING ( COUNT(Column_Name) >= 1 );

    Inbetween SELECT and Column_Name add the keyword DISTINCT - That should...

  • RE: Send Messages from SQL SERVER

    Is Database Mail configured?

  • RE: No repeatetion of names?

    SELECT DISTINCT

Viewing 15 posts - 616 through 630 (of 757 total)