Bad Admins: Attacking via Group Membership
This is a series of blog posts about how administrators can gain access to SQL Server, even if you try...
2011-07-13
1,874 reads
This is a series of blog posts about how administrators can gain access to SQL Server, even if you try...
2011-07-13
1,874 reads
Are you considering making a change to your view or stored procedure? Or possibly you are considering moving your database...
2011-07-13
2,680 reads
A quick plug for my friend Blain Barton from Microsoft, he’s got a series of three broadcasts that are video,...
2011-07-13
738 reads
T-SQL debugging is not 100% in SQL Server. It has few bad drawbacks starting from difficulties when setting it up...
2011-07-13
1,214 reads
First we need to know the name and file location of the MSDB database files. When you change the location, make...
2011-07-13
955 reads
At work recently, I explained to a coworker the reasons and benefits of having databases in Simple mode in your...
2011-07-13
956 reads
If you ever want to validate what level of access a user has within a database OR wish to temporarily...
2011-07-13
1,121 reads
SQL Server codename “Denali” CTP3 has been released to the public after much anticipation. You may ask yourself, “What happened...
2011-07-13
2,752 reads
When you open a SQL Server Integration Services (SSIS) package in SSIS Designer or add components to a package, SSIS...
2011-07-13
2,582 reads
This is just a quick note to remind anybody who may be interested of the upcoming Las Vegas User Group...
2011-07-13
604 reads
By Vinay Thakur
RAG — Retrieval Augmented Generation. we have covered so far — embeddings, vectors, vector...
By Vinay Thakur
Continuing from Day 6 we learned Embeddings, Semantic Search and Checks, on Day 7...
By Vinay Thakur
Continuing from Day 5 where we covered notebooks, HuggingFace and fine tuning AI now...
Comments posted to this topic are about the item Not Just an Upgrade
Comments posted to this topic are about the item Restoring On Top I
Comments posted to this topic are about the item Designing Delta Tables with Liquid...
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