Viewing 15 posts - 16 through 30 (of 180 total)
If it is SQL 2016+ you can enable the QueryStore feature and check the reports it provides.
June 29, 2020 at 1:14 am
Hi migurus,
Your t-sql statement works fine on 13.0.5698.0.
May be the index name is allocated to another object in that database?
June 28, 2020 at 9:02 pm
Drive 1: System drive
Drive 2: Database drive for DB's with a lot of read/writes
Drive 3: Database drive for other DB's and TempDB
Drive 4: Log files
Drive 5: Backups and other...
June 24, 2020 at 4:07 am
..if NVME then better.
I haven't seen any SAN with NVMe yet. If someone knows a model with NVMe please share that.
June 22, 2020 at 10:31 pm
The dates in the question and in the answers do not match 😉
September 27, 2019 at 4:33 am
Results on my i5 laptop
How many CPU/cores was on that laptop do you use SSD drive? My test was done on a...
December 27, 2018 at 1:03 pm
You don't have an option to install 2017 first. Because it won't allow you to install a lower version of SQL Server. The most recent version of shared tools should...
December 11, 2018 at 8:01 pm
October 11, 2018 at 1:41 pm
Accordingly with the official Microsoft web site you will need to pass one of these exams in order to get your MCSE: Data Management and Analytics:
Exam 70-473
Exam...
September 23, 2018 at 10:08 pm
Good article, thank you.
The conventional migrations were described in my article - http://www.sqlservercentral.com/articles/SQL+Server+2017/172693/ You can use it for comparison.
August 28, 2018 at 2:45 pm
I have published similar solution sometime ago - http://www.sqlservercentral.com/articles/Database+Mail/166901/
August 23, 2018 at 5:13 am
The second parameter is not acceptable - https://docs.microsoft.com/en-us/sql/t-sql/functions/string-split-transact-sql?view=sql-server-2017
July 8, 2018 at 2:53 pm
Something like this?
select merchantnumber, max(merchantname) merchantname, max(activeflag) activeflag, min(rec_start_date) rec_start_date, max(rec_end_date) rec_end_date
from #datatable
group by merchantnumber
July 4, 2018 at 3:37 pm
That depend on the version of MS SQL Server.
https://docs.microsoft.com/en-us/sql/t-sql/statements/create-columnstore-index-transact-sql?view=sql-server-2017
July 3, 2018 at 3:58 pm
I would use something like this:
CREATE
June 28, 2018 at 9:09 pm
Viewing 15 posts - 16 through 30 (of 180 total)