by George Chrysovaladis Grammatikos | Apr 19, 2018 | SQL Server, Troubleshooting
If there is a problem during the upgrade process of a SQL Instance, then follow these instruction, Check the archive Summary.txt, which is located at C:\Program Files\Microsoft SQL Server\XXX\Setup Bootstrap\Log directory The second file that keeps logging important...
by George Chrysovaladis Grammatikos | Apr 19, 2018 | SQL Server, Troubleshooting
If there is a break in the restore process then we can follow the steps below to try solve the problem. First, Open SSMS and execute the following command to look at database Status. SELECT NAME, STATE_DESC FROM SYS.DATABASES As soon as you confirm that database is in...
by George Chrysovaladis Grammatikos | May 17, 2017 | SQL Server, Troubleshooting
Heap table are the tables which they don’t have any clustered index. : — List all heap tables SELECT SCH.name + ‘.’ + TBL.name AS TableName FROM sys.tables AS TBL INNER JOIN sys.schemas AS SCH ON TBL.schema_id = SCH.schema_id INNER JOIN sys.indexes...