Strange Issue of waittype – PREEMPTIVE_OS_GETPROCADDRESS
ISSUE : Today, My Friend is facing issue with SQL Server error logs on one of my production server. SQL Server...
2015-06-02
914 reads
ISSUE : Today, My Friend is facing issue with SQL Server error logs on one of my production server. SQL Server...
2015-06-02
914 reads
The 16th cumulative update release for SQL Server 2012 Service Pack 1 is now available for download at the Microsoft...
2015-05-25
693 reads
The 6th cumulative update release for SQL Server 2012 Service Pack 2 is now available for download at the Microsoft...
2015-05-25
971 reads
Finally after a long waiting period, Microsoft release SQL Server 2014 Service Pack 1 (SP1), Same is now available for...
2015-05-25
855 reads
Steps of Moving MSDB & Model SQL Server system Database to new locaation:-
1) Check current location of MSDB & Model Databases by...
2015-05-18
3,269 reads
Question : Database snapshot captures only data changes or it will also save real database from DDL changes (like table structure,...
2015-05-19 (first published: 2015-05-11)
5,622 reads
The 5th cumulative update release for SQL Server 2012 Service Pack 2 is now available for download at the Microsoft Support site. Cumulative Update 5 contains all the hotfixes...
2015-04-27
9 reads
The 15th cumulative update release for SQL Server 2012 Service Pack 1 is now available for download at the Microsoft Support site. Cumulative Update 15 contains all the hotfixes...
2015-04-27
6 reads
The 7th cumulative update release for SQL Server 2014 RTM is now available for download at the Microsoft Support site. Cumulative Update 7 contains all the hotfixes released since...
2015-04-27
10 reads
The 5th cumulative update release for SQL Server 2012 Service Pack 2 is now available for download at the Microsoft...
2015-04-27
690 reads
By HeyMo0sh
As a DevOps professional, I’ve seen firsthand how cloud costs can quickly spiral out...
By Steve Jones
AI is everywhere. It’s in the news, it’s being added to every product, management...
By Vinay Thakur
RAG — Retrieval Augmented Generation. we have covered so far — embeddings, vectors, vector...
Hi, ssms is free here. I can think of other reasons to do this...
I've written some documentation on using different Markdown types of files on GitHub. It's...
Comments posted to this topic are about the item Not Just an Upgrade
I am doing development work on a database and want to keep a backup so I can reset my database. I make some changes and want to restore over top of my changes. When I run this code, what happens?
USE Master BACKUP DATABASE DNRTest TO DISK = 'dnrtest.bak' GO USE DNRTest GO CREATE TABLE MyTest(myid INT) GO USE master RESTORE DATABASE DNRTest FROM DISK = 'dnrtest.bak' WITH REPLACESee possible answers