Viewing 15 posts - 301 through 315 (of 7,472 total)
What is actually the question ?
Why are inserts failing ? ( trace it if it's not available in the application logs )
November 8, 2023 at 8:04 am
no
November 6, 2023 at 8:06 pm
You should also perform restores on a regular basis to see of your backups still meet your...
November 2, 2023 at 8:48 am
If SQLServer detects the new definition to be the same as the current definition, it will not act.
However, if there are data type storage alterations, it will have to rebuild...
October 25, 2023 at 2:52 pm
Keep in mind, to retrieve data in a certain order, you need to add an order by clause to your select statement !
October 24, 2023 at 6:12 am
Check the connection objects used by your application
October 19, 2023 at 11:24 am
My worst nightmare has come true. We upgraded to 2022 and stuff is crawling now. We turned off Query Store and went back to the old cardinality estimator and...
October 19, 2023 at 5:59 am
prevent the accounts to connect to the database.
To differentiate these accounts for this action, create a database user role which you "deny connect"
for your maintenance, you add the accounts...
October 18, 2023 at 7:10 pm
use powershell dbatools ( free ) copy_dbalogin to copy accounts (including sid) from one AG member to another and avoid these issues.
October 18, 2023 at 7:01 pm
wat's the isolation level the sproc is called with from the application ?
regarding implicite transactions, it all depends when the application will require its first lock and how...
October 18, 2023 at 11:48 am
use "restore filelistonly from disk=youdbackupfile" to check if the file contains backup information for different databases !
or "restore headeronly from disk=youdbackupfile"
Are you sure your databases will only have 2...
October 18, 2023 at 11:41 am
No.
But it all depends if a new version functionally implements a functionallity your application may need or benifits from.
Keep in mind some of the new stuff in databases have been...
October 12, 2023 at 11:05 am
If you're curious about transaction log activity for open transactions, Paul Randal has a script at Script: open transactions with text and plans.
October 10, 2023 at 11:39 am
did you actually install SMO for SQL2016 ?
October 5, 2023 at 10:50 am
that's because you don't start from the same set of data due to the "not exists" credential. ( which checks for existance in the target table !! )
October 5, 2023 at 10:40 am
Viewing 15 posts - 301 through 315 (of 7,472 total)