Viewing 15 posts - 1 through 15 (of 98 total)
In addition to the security update described in bulletin MS11-049, this security update also contains all the updates that are included in cumulative update packages 1 through 7.
Anyone got...
July 23, 2013 at 2:26 am
Good question I'm moving to Always on soon. I would like to know the answer to this too. Something I have been thinking about too.
July 23, 2013 at 2:23 am
Run this
SELECT net_transport, auth_scheme
FROM sys.dm_exec_connections
WHERE session_id = @@SPID;
See what Authentication method you are using.
July 10, 2013 at 7:46 am
And you are sysadmin on both servers?
Looks like Keberos issue. Cannot hop you credentials between servers.
All sorts of things to look into.
Server Principal Name's etc. Accounts need to have delegation...
July 10, 2013 at 7:03 am
What about the other acoount used for the APP. I imgine they are both domain accounts.
Do you use Kerberos in your environment.
What happens if you use the 'Be made using...
July 10, 2013 at 6:46 am
Try granting the SQL AGENT account read access to the remote db in question. The job will be running with those credentials.
July 10, 2013 at 6:19 am
Deos the account that runs the SQL agent have access to the DB on the linked server.
July 10, 2013 at 4:26 am
Ok, if my secondaries go offline. Can I bring them online
manually and turn one into the Primary.
June 17, 2013 at 2:08 am
Thanks, does this apply to when the Primary db falls offline too.
Lets say san administrator removed the disks that held the mdf and Ldf files. This would also force the...
June 14, 2013 at 12:48 pm
No. But the restore works via T-SQL with no amendments to the logical names.
Funny issue.
June 5, 2013 at 4:59 am
Do you have backups in a shared folder for the AOG databases
June 4, 2013 at 3:21 am
Thanks.
Top transaction report doesn’t always report the sproc that is causing the issue.
If the problem sproc in question has increased and is used very often it may not appear but...
May 8, 2013 at 2:51 am
select so.name, resource_database_id, Resource_associated_entity_id, request_mode, request_type, request_status,request_session_id, GETDATE() from sys.dm_tran_locks tl
inner join sys.sysobjects so on so.id= tl.resource_associated_entity_id
where [resource_type] <> 'database'
--and so.name <> 'Table_1'
and so.name not like 'sys%'
Try this...
April 30, 2013 at 8:54 am
Viewing 15 posts - 1 through 15 (of 98 total)