Viewing 15 posts - 331 through 345 (of 1,491 total)
multiple bulkier tables with years of data
https://www.sqlshack.com/database-table-partitioning-sql-server/
https://www.brentozar.com/archive/2012/08/potential-problems-partitioning/
June 17, 2022 at 7:03 am
I suspect the SQL Agent and system health will not be much use for this. Assuming you have the basics covered, like enough memory for Windows to run without paging...
June 11, 2022 at 11:28 am
I am not sure what you hope to achieve by signing all the SPs with a certificate. I have only ever signed t-sql SPs when ownership chaining is not going...
May 27, 2022 at 9:23 pm
Here is an article by Brent Ozar which includes performance counters:
https://www.brentozar.com/archive/2006/12/dba-101-using-perfmon-for-sql-performance-tuning/
I suspect the main use for PerfMon information is when there seems to be load on the server but...
May 24, 2022 at 10:15 am
If you have difficulty understanding joins you may want to start with a basic general SQL tutorial:
https://www.w3schools.com/sql/
If you want to learn t-sql you can read Itzik Ben-Gan's books. Maybe...
May 23, 2022 at 6:13 pm
It seems to UPDATE with the first non null value it comes across.
Due to the way SQL Server is internally structured, with a small heap under low load this will...
May 19, 2022 at 6:42 pm
Any major development environment will work with Azure SQL database. (.Net, Java, PHP, Python etc)
As you are asking this question I assume you do not have much development experience. If...
May 15, 2022 at 2:02 pm
CASE can only return one datatype so you will either have to cast everything to varchar(13) or use NULL for No Valid Date.
ps Instead of typing out '1900-01-01 00:00:00.000' everywhare...
May 4, 2022 at 9:58 am
April 14, 2022 at 7:40 am
Your problem is almost certainly the cursor. To get any reasonable help you will need to post consumable test data and the full procedure. As well as showing the logic...
March 29, 2022 at 6:05 pm
https://www.sqlshack.com/dynamic-pivot-tables-in-sql-server/
March 22, 2022 at 9:19 pm
You need to cast the join columns to the same collation. Ideally you should sort out the collation in the database as casting negates the use of indexes.
As you have...
March 22, 2022 at 8:31 am
Viewing 15 posts - 331 through 345 (of 1,491 total)