Viewing 15 posts - 31 through 45 (of 52 total)
I would first review the permissions for the proxy account that calls the package.
You are reading the msdb database and master databases
October 7, 2020 at 12:57 pm
I would start by down loading Glenn Berry s diagnostic queries and running these.
With page life expectancy, look at the long term trend. See Jonathan Kehayias blog about it in...
October 7, 2020 at 12:50 pm
There is automatic seeding and lag time. Can you be more specific as to what you need?
October 2, 2020 at 2:39 pm
Can you use Set instead of select
Or rewrite your query
Select * from customer_orders where order_id = (select max(order_id) from dbo.orders)
September 29, 2020 at 2:55 pm
To get information for this, you can query with T-sql:
Select auth_scheme, local_tcp_port, @@servername, SERVERPROPERTY('MachineName'), SERVERPROPERTY('InstanceName') From sys.dm_exec_connections where session_id = @@spid
And
Select servicename service_account from sys.dm_server_services
September 28, 2020 at 8:31 pm
So you need to go back a year? I would see what there is in msdb.dbo.sysjobhistory
September 24, 2020 at 12:56 pm
Run a query to see what is in those rows. Perhaps it is empty spaces that you can update to 0, or 'null'.
You could also use the case statement when...
September 24, 2020 at 12:48 pm
Add account
Create credential for the account
Create proxy in sql server agent for that account
Call your job step with that proxy
Grant that account access to the network share
September 24, 2020 at 12:29 pm
Does your connection string include applicationIntent= read only?
Have you configured read only routing?
What account is calling the package?
September 24, 2020 at 12:26 pm
My first guess is to check the sql account
Did you do an in place upgrade?
Can you run: Select name, physica_name from sys.master_files where database_id = DB_ID('ssisdb')
September 22, 2020 at 6:53 pm
Thank you for this well written article.
I like your links. I have to say that the longer you work with databases, the more likely you will overlook the application front...
September 22, 2020 at 1:01 pm
No. Move the ,nd file manually on the secondary
September 21, 2020 at 7:24 am
Is the database synchronizing on each node?
September 18, 2020 at 2:26 pm
Sql agent job step type: powershell
Switch-SqlAvailabilityGroup -Path SQL SERVER:Sql\othernode\instance\AvailabilityGroups\AGName -ErrorAction Stop -WarningAction SilentlyContinue | Out-Null
Schedule as one time run
Run as sys admin, sql agent account
September 16, 2020 at 1:39 pm
How big is your database? Youu could log ship to both replicas.
After bringing database online on the primary, do an xlog backup and restore that on the secondary. It speeds...
September 16, 2020 at 12:59 pm
Viewing 15 posts - 31 through 45 (of 52 total)