Viewing 15 posts - 31 through 45 (of 1,535 total)
This will give you a list of local databases that are not in an AG, or where the local server is the AG primary...
select name from sys.databases where database_id not...
September 2, 2016 at 8:43 am
Your change would actually show up as I (an insert).
Let's say that you have a a record and it gets inserted and updated a couple of times, I'll include the...
September 1, 2016 at 12:24 pm
Question is why would you cluster on virtual hardware? (other than for cheap QA & validation)
I'm interested to know what this is providing you.
July 17, 2012 at 12:28 pm
Probably a silly question, why was the database in full recovery in the first place if you aren't worried about recoverability? And why shrink the log so? It will just...
July 12, 2012 at 1:32 pm
Out of curiosity, are your SQL and SQL Agent services using the same account?
July 12, 2012 at 11:31 am
The server proxy? You don't, any time xp_cmdshell would get called by the proc it would launch as that particular user specified (rather than the service account)
July 12, 2012 at 11:19 am
One other thing, I just remembered, you could also enable a server proxy account. By doing this any execution of xp_cmdshell would run under that proxy. It might be worth...
July 12, 2012 at 10:19 am
What authentication are you using for the linked server security?
Could you script it out and paste that?
July 12, 2012 at 10:05 am
That's a little surprising, I would expect a stored proc call to xp_cmdshell which launched DTEXEC to actually use the SQL Service account, not the Agent account.
Either way, your best...
July 12, 2012 at 9:58 am
You might want to check that your servers can communicate over that port and aren't being blocked by a firewall. Telnet is great for doing that.
July 12, 2012 at 9:55 am
Make sure that you grab the most recent restore records from that query first. If indeed they are showing that the most recent file has nothing to restore then confirm...
July 10, 2012 at 2:57 pm
Have you looked for errors on the log shipping monitor or secondary server?
SELECT TOP 1000 [agent_id]
,[agent_type]
,[session_id]
...
July 10, 2012 at 2:06 pm
Wow, that's a whole lot of stuff. Why not just replicate to two different table names and then union all the results together in a view for querying?
July 10, 2012 at 2:02 pm
The article is good but it needs to address the flaws of attempting to do this, for example how threading index rebuilds or stats rebuilds could seriously impact the i/o...
July 9, 2012 at 2:04 pm
Viewing 15 posts - 31 through 45 (of 1,535 total)