Viewing 15 posts - 31 through 45 (of 355 total)
It is a db_owner in the database
are you trying to delete the actual owner of the database?
March 25, 2016 at 4:55 pm
I bet there's only 2 to pick from, if you can even find one. :hehe: BI books in general have been hard to come by since 2008...
March 25, 2016 at 4:51 pm
try @body='your query here'
or create a variable and put the query result in @variable such that @body = @variable
or try: @attach_query_result_as_file = 0
I typically do something like:
DECLARE @tableHTML...
March 25, 2016 at 4:38 pm
Another possible route is to make a CmdExec job step that runs a del cmd.
March 25, 2016 at 4:26 pm
Looks like transactional replication to me
March 24, 2016 at 4:39 pm
Log shipping is simply backup, copy, restore. You can have multiple secondaries, you just have multiple copy and restore jobs:
"The log can be shipped to multiple secondary...
March 24, 2016 at 4:31 pm
If you want to monitor 1000 servers, then stop doing this manually right away. Get your boss to give you a budget and then invest in one of the many...
March 24, 2016 at 4:16 pm
Did you perform failover during patching?
From what I'm seeing it may be related to the failover vs. the CU/Patch.
March 24, 2016 at 4:07 pm
Learn Who Started that Trace with the Default Trace
slight mod:
DECLARE @FileName VARCHAR(MAX)
SELECT @FileName = SUBSTRING(path, 0, LEN(path)-CHARINDEX('\', REVERSE(path))+1) + '\Log.trc'
FROM sys.traces
WHERE is_default =...
March 24, 2016 at 3:33 pm
Are you asking about a failover cluster or an availability group?
March 24, 2016 at 3:10 pm
Typically AGs are setup (as basically mirroring) between stand alone instances on top of WFC nodes, not clustered SQL instances.
HTH
March 24, 2016 at 3:09 pm
Here's the only way I've ever seen that done, but it doesn't address db_datareader only or the group ownership
USE [master]
GO
CREATE LOGIN [test] WITH PASSWORD=N'test', DEFAULT_DATABASE=[TestDB], CHECK_EXPIRATION=OFF, CHECK_POLICY=OFF
GO
USE [TestDB]
GO
--DON'T Create the...
March 24, 2016 at 2:49 pm
What are you trying to do exactly?
Here's some related links:L
Windows Server: Troubleshooting "RPC Server Unavailable" Errors
Connecting to remote SQL Server Integration Service from SQL Server management Studio[/url]
RPC Service not running...
March 24, 2016 at 2:21 pm
Viewing 15 posts - 31 through 45 (of 355 total)