Viewing 15 posts - 46 through 60 (of 112 total)
If your max memory is 512 GB. I would give 1/4 to the OS and apps. The rest goes to SQL.
If you have VMs, I would initialize the Min memory...
December 21, 2023 at 5:23 am
I would not use some of these monitoring tools. They slow things down.
Perfmon gives you good performance graphs for KPI. Please check out Idera.
December 21, 2023 at 5:15 am
A good database design is a must with normal forms 1,2,3, others met.
+ good indexes
+ Partitioning is best.
+ High Availability groups
-> Hardware choices
+ RAID 10 or better
+ Load balancer
+ Disk...
December 14, 2023 at 6:11 am
Please read on temptdb database contention.
https://www.sqlshack.com/sql-server-tempdb-database-and-latch-contention/
November 28, 2023 at 2:58 pm
Yes, SSRS resource should be a shared resource on another SQL server for node 1 and node 2 on AG.
Agree with ANT-GREEN notes.
November 27, 2023 at 1:26 am
Database design books - college level
SQL server hand books - lots to choose from. Grant Fritchey has some!
Videos:
Brent Ozar videos / Pinal Dave - SQL authority / (Jonathan Kehayias /...
November 27, 2023 at 12:53 am
I understand you are trying to preserve some data at the subscription, and save time. Perhaps, try this steps:
November 27, 2023 at 12:39 am
Yes, the windows system event viewer will tell you if there is a hard drive error in addition to the SQL logs.
I hope you can afford a raid 10 one...
November 27, 2023 at 12:15 am
WMI provider errors could mean a lot of things. One of them could be your SQL install got damaged some what.
Try this solution from Microsoft:
To fix a corrupt SQLPS module,...
November 27, 2023 at 12:05 am
Create an alert that reads from one of the system catalog views and notify an operator by email when the free space of the SQL Transaction Log file becomes under...
October 26, 2023 at 4:59 am
Simply create an alert that reads from one of the system catalog views and notify an operator by email when the free space of the SQL Transaction Log file becomes...
October 26, 2023 at 4:56 am
I would have a log table to keep track of the updates, etc, and maintain this table regularly. It is quite simple.
September 30, 2023 at 7:25 am
Fixing transactional replication issues in SQL Server requires a systematic approach that involves identifying the issue, checking the replication configuration, agents, distribution database, publication and subscription databases, reinitializing the subscription...
September 30, 2023 at 7:09 am
I think this could help:
You may try the bcp command to generate the CSV files with proper file name format plus the current date/timing string:
Example:
bcp DBName.SchemaName.TableName out 'C:\Path1\FileName_' + 'Date...
September 30, 2023 at 6:31 am
Viewing 15 posts - 46 through 60 (of 112 total)