Viewing 15 posts - 46 through 60 (of 572 total)
Have a look on this:
https://blog.sqlauthority.com/2007/03/28/sql-server-fix-error-8101-an-explicit-value-for-the-identity-column-in-table-can-only-be-specified-when-a-column-list-is-used-and-identity_insert-is-on/
October 15, 2018 at 10:44 pm
DBCC CHECKDB command is the main command to detect the inconsistency in the database. It is an amalgamation of other DBCC CHECKDB command, CHECK CATALOG, CHECKALLOC and DBCC CHECKTABLE. Running...
October 14, 2018 at 11:20 pm
This may help you out:
https://www.mssqltips.com/sqlservertip/5567/sql-server-service-broker-error-receiving-data--10054-an-existing-connection-was-forcibly-closed-by-the-remote-host/
October 14, 2018 at 10:50 pm
You can track tempdb usage by three DMVs command:
October 11, 2018 at 7:14 am
Here is how can you reduce database log file. Shrink the database log file according to the recovery model:
https://www.mssqltips.com/sqlservertutorial/3311/how-to-shrink-the-transaction-log/
October 11, 2018 at 7:07 am
Here is the query to find all the queries in SQL Server
SELECT dest.TEXT AS [Query],
deqs.execution_count [Count],
deqs.last_execution_time AS [Time]
FROM sys.dm_exec_query_stats AS deqs
CROSS APPLY sys.dm_exec_sql_text(deqs.sql_handle) AS...
October 9, 2018 at 11:33 pm
You can migrate your SQL Server database from one Server to another by various methods. Copy Database Wizard, Generate script, by Backup & Restore,
http://www.technologycrowds.com/2018/10/import-sql-server-database-to-another-server.html
October 8, 2018 at 12:34 am
Here is the step by step procedure to migrate SQL Server 2014 to 2014. Go through it:
https://www.virtualizationhowto.com/2017/03/how-to-upgrade-sql-server-2014-to-sql-server-2016/
October 7, 2018 at 10:28 pm
SQL Error 8101 occurs when user has attempted to insert a row containing a specific identity value into a table that contains an identity column. See this, this will help...
October 2, 2018 at 11:00 pm
This was removed by the editor as SPAM
September 27, 2018 at 11:30 pm
This was removed by the editor as SPAM
September 27, 2018 at 11:15 pm
This was removed by the editor as SPAM
September 26, 2018 at 11:41 pm
This was removed by the editor as SPAM
September 26, 2018 at 10:53 pm
This was removed by the editor as SPAM
September 26, 2018 at 10:45 pm
Viewing 15 posts - 46 through 60 (of 572 total)