Viewing 15 posts - 1 through 15 (of 23 total)
A team mate of mine manage to bring the restore time back to the initial speed by using this 2 parameters during the restore MAXTRANSFERSIZE & BUFFERCOUNT. However none of...
March 18, 2025 at 3:24 am
The target server is basically an empty server hosting SQL 2022 it hasn't gone live yet, thus no jobs running there. So I could say no changes was done at...
March 13, 2025 at 8:57 am
Thanks for all the reply.
Just 1 more thing to clarify, if I were to upgrade my database from SQL 2012 to SQL 2019 & I want to retain...
October 1, 2024 at 6:47 am
Thanks for all the reply.
Just 1 more thing to clarify, if I were to upgrade my database from SQL 2012 to SQL 2019 & I want to retain all my...
September 24, 2024 at 8:08 am
Ok... good.
1. What is populating the [D_ID]? A SEQUENCE?
You have nullable columns and, because you have PAGE compression turned on, almost all of the columns (even the supposed fixed...
July 11, 2024 at 8:38 am
Hi All,
First of all, thank you for taking your time to reply on this post & also sorry for the late replies as I'm a bit tied up with other...
July 10, 2024 at 7:43 am
On the subject of the backup failure...
IMHO (and experience but YMMV), it's a complete waste of time to backup a 2TB log file (happened to me the 2nd day...
September 26, 2023 at 4:15 am
If partitioning IS present, why is there a need for any of this? SWITCH the old data out. Copy it to a new table in the archive. Then SWITCH...
May 10, 2023 at 2:33 pm
Did you try to run this NOT using MERGE ?
No I have not. I'm mainly doing general administrator for the DB, the query itself is developed by my application...
May 10, 2023 at 8:02 am
May 8, 2023 at 1:38 am
I'm trying to create a clustered index on a very large heap table. Below is the script i'm using to perform the creation job.
CREATE CLUSTERED...
May 5, 2023 at 3:03 am
If you've been running without partitions for 12 years or so, why add them back? Partitions are all about data management, not performance. If you're not dealing with all...
February 16, 2023 at 1:51 am
Hi All,
Thank you so much for your replies. Just to add on, does Microsoft mention anything about having a primary constraint and table partition together? As far as I know...
August 15, 2022 at 6:36 am
instead of a Primary Key you can define it as a Unique Index.
one of your issues is how you ensure that GSN_ID remains unique throughout the table. - a...
August 8, 2022 at 2:53 am
Here's the create index statement which the developers run.
Create NONCLUSTERED INDEX [IX_TileID_Include] ON [DB01].[dbo].[table1] ([Tile_ID]) INCLUDE ([Die_ID],[GGI_ID],[GGI_X],[GGI_Y],[DS1_ID],[DS1_X],[DS1_Y]) with (DATA_COMPRESSION = PAGE, ONLINE=ON)
As for the server spec, it's a VM server...
June 27, 2022 at 3:42 am
Viewing 15 posts - 1 through 15 (of 23 total)