Forum Replies Created

Viewing 15 posts - 76 through 90 (of 285 total)

  • RE: Slow package running time

    Post your execution plan as well for the query which takes an hour.

  • RE: Transactional Replication - Data Validation

    Thank you for directing the same. However my quetsion was about any stored procedure which does the same in SSMS.

  • RE: Back Up details

    Try with this select Database_name,

    COALESCE(Convert(varchar(20), MAX(backup_finish_date), 101),'Backup Not Taken') as

    LastBackUpTakenDate,

    COALESCE(Convert(varchar(20), MAX(user_name), 101),'NA') as BackupTakenUser

    from msdb.dbo.backupset

    GROUP BY Database_name

  • RE: Read the msdn content from anywhere else?

    I am not sure how can we cheat the blocking...However giving the content as below:

    To configure login auditing

    In SQL Server Management Studio, connect to an instance of the SQL Server...

  • RE: SQL Denali - AlwaysOn

    I guess my question is not clear. Sorry for that.

    DBMirroring, the transactions are going from principal to mirroring through tran logs.

    How it is been handled in AlwaysON? I guess now...

  • RE: Optimize for ad hoc workloads option and measuring results

    I do not think enabling the option will cause issues. I heave read Glen's article once in SSC stating the same. Do not have the link handy.

    However, if there are...

  • RE: How query will get execute internally in sql server

    Please check out the BOL topics from the link below. If this is not sufficient then I suggest that you buy one of the Inside SQL Server books. There are...

  • RE: SQL Denali - AlwaysOn

    Thank you for your reply.

    However I was about to ask a question like how AlwaysON will move the committed data from Primary to secondaries? Is this still based on transaction...

  • RE: Inbox message how to store in database

    Thanks you for all for replies with the great explanations!!! I buy it!!!

  • RE: Inbox message how to store in database

    steveb. (9/20/2011)


    i would avoid SQLmail especially since you are runnig SQL 2008.

    Why is this? It is a deprecated feature for future versions. However it works in 2008 R2 as...

  • RE: Inbox message how to store in database

    Jayanth_Kurup (9/20/2011)


    Security is another issue.

    CLR is the way to go . I wouldn't suggest SQL Mail on a higher enviornment.

    Could you please let me know the issues that youi...

  • RE: Inbox message how to store in database

    sqlzealot-81 (9/20/2011)


    You may look at SQLMail option. (Am not talking about DBMail).

    There are system procedures to read the data of inbox mails.Please google out it been long time that worked...

  • RE: Inbox message how to store in database

    You may look at SQLMail option. (Am not talking about DBMail).

    There are system procedures to read the data of inbox mails.Please google out it been long time that worked on...

  • RE: Replication

    Thank you for writing in. Its clear now.

  • RE: Replication

    Its my bad, Its related with Clustering....

Viewing 15 posts - 76 through 90 (of 285 total)