Viewing 15 posts - 61 through 75 (of 709 total)
This is known as a "Data Islands" problem - you're looking for groups of records in an ordered set.
You have a identity value on the table, so this gets easy....
Eddie Wuerch
MCM: SQL
January 19, 2022 at 4:45 pm
Certificates used for TDE and Certificates used to encrypt a database backup will be in the master database. They are not included in the user database backup.
Certificates that have been...
Eddie Wuerch
MCM: SQL
January 11, 2022 at 8:20 pm
Is there any way besides the Configuration Manager GUI to find out what SSL certificate is bound to the MSSQLSERVER network protocols?
Check the registry for what is configured. Fire up...
Eddie Wuerch
MCM: SQL
December 17, 2021 at 7:16 pm
An SSL certificate is for communication between two different endpoints. The worst that could happen is the Primary won't connect to the Secondary, and things will look like they do...
Eddie Wuerch
MCM: SQL
December 16, 2021 at 10:31 pm
A backup stripe set is a database backup taken to multiple backup files. The above 200GB block blob max size is your guide - use enough files to keep each...
Eddie Wuerch
MCM: SQL
December 7, 2021 at 10:24 pm
Go to where the backups were created and look to see if you're grabbing the right certificate:
SELECT * FROM master.sys.certificates WHERE thumbprint = 0x477BB40D3618B2E162F70B62693D11F6FA3A360F
Eddie Wuerch
MCM: SQL
November 29, 2021 at 7:11 pm
When you split a partition with data in it, the engine must scan the partition's rows to determine which rows will go into the new partition. Even in cases such...
Eddie Wuerch
MCM: SQL
November 16, 2021 at 4:08 am
The gold nugget in that error message is the \KB3045321\ in the path. 'KB' and a bunch of numbers means 'Knowledge Base article ######'.
Eddie Wuerch
MCM: SQL
November 11, 2021 at 8:22 am
Use IDENTITY_INSERT:
SET IDENTITY_INSERT [YourTableName] ON;
INSERT [YourTableName](ColumnID, ID, ColumnName)
SELECT 515, 13, 'DriverID';
SET IDENTITY_INSERT [YourTableName] OFF;
Eddie Wuerch
MCM: SQL
November 8, 2021 at 5:53 am
Want to learn something well? Then figure out how to teach it. Think you know something? Offer to stand in front of a room of your peers - who can...
Eddie Wuerch
MCM: SQL
November 1, 2021 at 6:37 pm
> Okay, so it does work with the port number. Now how do I get it to connect without the port number?
Start the SQL Browser service.
Eddie Wuerch
MCM: SQL
October 28, 2021 at 4:25 pm
Connecting is expensive. Staying connected is cheap. I'm not sure about SQL Server 2014, but a connection in prior versions consumed only 32KB of memory.
Check sys.dm_exec_sessions.last_request_end_time for the connections. If...
Eddie Wuerch
MCM: SQL
October 12, 2021 at 4:21 pm
Selecting every 10th record means selecting every row where the row_number divides evenly by 10, as in, when you divide the row_number by 10, the remainder will be 0.
WHERE RowNumber...
Eddie Wuerch
MCM: SQL
October 12, 2021 at 3:29 pm
Check the AG replicas. The Primary can't flush the log until the transactions have been replicated to all AG secondary replicas.
Eddie Wuerch
MCM: SQL
October 6, 2021 at 10:17 pm
When primary DataCentre DC1 goes down including SQL07P &SQL08P server , How should I perform failover as SQL06P node in DC2 , failover mode is in Manual mode?
I think I...
Eddie Wuerch
MCM: SQL
October 5, 2021 at 4:48 pm
Viewing 15 posts - 61 through 75 (of 709 total)