Forum Replies Created

Viewing 15 posts - 2,791 through 2,805 (of 22,202 total)

  • RE: Transaction log filling up issue.

    Take one database and try running a full backup on it, then running a log backup (both manually, both using standard SQL Server BACKUP commands). Maybe that first full backup...

  • RE: Renaming a primary key columns in the Azure DB

    Sure. Still, lots of coordination will be involved in putting the view in place over the table so that the code isn't affected, renaming the table underneath that (because you...

  • RE: Renaming a primary key columns in the Azure DB

    Since it's a primary key on the table, you are really limited in choices. I'd would experiment on the side with every one you outlined. Testing is going to be...

  • RE: Transaction log filling up issue.

    One exception to what I just typed, the very first full backup and the very first log backup ever taken on a given database are kind of linked. However, once...

  • RE: Transaction log filling up issue.

    Full backups and log backups are not directly connected (Differentials on the other hand...). Just talking about full backups, whether from commvault or not, shouldn't be affecting log backups. Instead,...

  • RE: urgent

    sizal0234 - Wednesday, January 2, 2019 4:49 PM

    Hi my friend, 

    I was in your shoes 1 year ago and just studying is not...

  • RE: SQL Optimization

    Specifically this stuff:

    (covert(int,n.SSICatyear) = year(convert(int,ep.proceduredate)))

    Is going to kill performance.

  • RE: Auditing changes to Maintenance plan jobs

    In terms of overall impact to the server, I'd pick extended events over audit, every day. Audit is much more likely to have a negative impact on the instance.

  • RE: Query Performance

    And, calculations like this are best done into a variable once:
    @SearchTextLenght + @Q - 2

    Having it in the filter criteria leads to problems.

  • RE: steps for performance tuning of a sql server

    Just so the link to my book is on the thread...

    Look below in my signature.

  • RE: urgent

    Jeff Moden - Thursday, December 20, 2018 10:30 PM

    Also, you might want to lose the word "urgent" to get people's attention.  All...

  • RE: SQL Server : Parallelism vaules best practice

    Go with Muthukkamaran's advice. Change the Cost Threshold to a higher value and then leave everything else at the defaults until you see a reason to change through monitoring.

  • RE: DB Env. Refresh

    Maybe I don't understand what you're doing then. I don't know how you went from backups to Elastic Query as a way to solve a database refresh. Since the backups...

  • RE: Queries to practice compilation and recompilation.

    Tac11 - Wednesday, December 19, 2018 10:04 AM

    Thanks Grant, Any particular script do you suggest for compilation/recompilation trouble shoot?

    Nope. Any script will compile or...

  • RE: T sql help

    Change the query. Add the columns to the GROUP BY clause, or make it a sub-select or...

Viewing 15 posts - 2,791 through 2,805 (of 22,202 total)