Viewing 15 posts - 766 through 780 (of 2,356 total)
Our OS patching is handled on a regular cycle with SCCM. Windows patches are more frequent and regular than SQL patches.
SQL patched are done through SCCM, although there is a...
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
March 25, 2021 at 3:20 pm
You can only upgrade 2 versions. So, 2005 you can do an in-place upgrade to 2008 or 2008 R2.
BUT, guess what. 2008 and 2008 r2 are also no longer supported.
I...
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
March 25, 2021 at 3:12 pm
Maybe. He may be the owner on one node, and not on the other. I've had that situation.
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
March 25, 2021 at 2:45 pm
No, it can be set to read only. There are no other options.
If you need to have two separate databases that need to be in sync and allow read/writes, you...
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
March 25, 2021 at 2:31 pm
Thanks a lot! I really appreciate to everyone and it's very helpful.
Question regarding data synchronization. Actually we are migrating data from different database system to SQL Server which would...
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
March 25, 2021 at 12:43 pm
BCP does not go from table to table. It is an import/export utility that goes to a file.
If you are going from table to table, why won't T-SQL work?
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
March 24, 2021 at 7:02 pm
Sure. Try it.
Some sample code:
DECLARE @cmd varchar(1000) = 'BCP DatabaseName.Schema.Table OUT C:\BCP\ExportStuff.txt /m 100 /b 100 /e ExportStuff.err /c /r\n /t, /S ServerName /T'
EXEC xp_Cmdshell @cmd
Why do you want to...
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
March 24, 2021 at 6:33 pm
I would not utilize read-intent for this scenario - that really should only be used for offloading application reads and is not intended to offload reporting users access.
Instead -...
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
March 24, 2021 at 6:30 pm
No, there is not a simple way unfortunately. Unless someone knows something I don't!
Create the read-only logins on both servers, disable them on the primary.
I set up a script to...
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
March 24, 2021 at 6:00 pm
I would probably use BCP.
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
March 24, 2021 at 1:17 am
Or, you could download SQL Search and use that!
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
March 24, 2021 at 1:14 am
Thanks. I am looking for HA option with Automatic failover in the event of a system outage instead of manual failover. How about preferred methodology for patching if I...
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
March 23, 2021 at 9:20 pm
When shutting down the whole farm environment with two nodes in Failover Cluster/AG, my thinking is to shutdown secondary first and then primary. When bringing up, start with primary...
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
March 12, 2021 at 12:01 pm
You are right there The Dixie Flatline... the ROLLBACK rolls back all transactions.
Not sure why I thought it only did the most recent one.
COMMITs happen per transaction though. So...
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
March 10, 2021 at 10:05 pm
Hi,
Can you please let me know what is the benefit of using the 'SET IMPLICIT_TRANSACTIONS ON' in the below code when we already have 'BEGIN TRAIN' which can be...
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
March 10, 2021 at 6:02 pm
Viewing 15 posts - 766 through 780 (of 2,356 total)