Viewing 15 posts - 391 through 405 (of 6,400 total)
What defines the start and end dates of a transaction?
Do you store that data anywhere else in the database?
What are you actually trying to accomplish here as the question is...
February 23, 2023 at 12:36 pm
So you are only backing up the log once a day, well that is really no use. Again it is time to push for RTO / RPO as that is...
February 23, 2023 at 11:56 am
First of all are you doing log backups for the DB?
If not speak to your team and ask them, "hey what is the RTO and RPO for this database" and...
February 23, 2023 at 10:20 am
What would you usually be creating a maintenance plan to do?
DBCC CHECKDB
Database backups
Index maintenance
So doing a quick google search (other providers available) “do I need to run dbcc checkdb on...
February 23, 2023 at 9:05 am
Have you verified that “NT Service\MSSQLSERVER” has full control to the root folder of the mdf files with the needed inheritance enabled downstream?
February 23, 2023 at 8:08 am
Just want to verify you are on SQL 2012 and not SQL 2008?
Should 10.0.2100 actually be 11.0.2100?
Major version 10 is SQL 2008 so wont go to 2019 without an intermediary...
February 22, 2023 at 3:12 pm
Add a waitfor delay line/step to the job to wait 2 hours after the start, and before the stop
ALTER XE START
WAITFOR DELAY '2:00:00'
ALTER XE STOP
February 22, 2023 at 11:48 am
Best bet is to speak to your Microsoft partner / reseller who sold you the license, or is now in charge of your licenses. Either that or subscribe to Visual...
February 22, 2023 at 8:47 am
sys.dm_tran_active_transactions
Should give you most of what you need here, the name will be "implicit_transaction" for implicit, the state will have 4 for a distributed transaction, etc.
February 21, 2023 at 4:45 pm
Probably one to go and read the documentation on how to use Informatica, but looks like you don't use the ' on the value in the where
Hope this is the...
February 21, 2023 at 1:07 pm
SQL Server is not a front end piece of software and will not prompt a user for an input.
If you want to get a user to pass values, you need...
February 21, 2023 at 10:22 am
Please script and paste the whole procedure so everyone can see what is failing as you have multiple issues on multiple lines.
February 21, 2023 at 10:15 am
On that same properties area is the "Size of job log" and "number of rows per job".
Are these set at the default 1000 / 100?
How many jobs do you have? ...
February 17, 2023 at 10:24 am
Treat it like a CU.
A GDR fixes CVEs with the product.
You plan and prepare for installing it the same way in which you would a CU, the installation process is...
February 16, 2023 at 6:27 pm
Viewing 15 posts - 391 through 405 (of 6,400 total)