Initialize a Transactional Replication from a Database Backup
During the last days I'm working on Replication – especially with Transactional Replication.
The main idea of Transactional Replication is that you...
2012-08-05
8,943 reads
During the last days I'm working on Replication – especially with Transactional Replication.
The main idea of Transactional Replication is that you...
2012-08-05
8,943 reads
During the last days I’m working on Replication – especially with Transactional Replication. The main idea of Transactional Replication is that...
2012-08-05
1,541 reads
Yesterday I have uploaded my 2nd SQL Server Quickie to YouTube. In this episode I'm
talking about Extents, and how SQL...
2012-08-04
1,121 reads
Yesterday I have uploaded my 2nd SQL Server Quickie to YouTube. In this episode I’m talking about Extents, and how...
2012-08-04
635 reads
We are all living in a fast moving world, especially in the IT industry. We have to
learn new technologies every...
2012-08-01
1,301 reads
We are all living in a fast moving world, especially in the IT industry. We have to learn new technologies...
2012-08-01
496 reads
Yesterday evening (European Time zone) Microsoft has released the SP2 for SQL Server
2008 R2. You can download the Service Pack...
2012-07-27
2,561 reads
In the last 2 blog postings you have learned how to setup your first Availability
Group with SQL Server 2012. Today...
2012-07-31 (first published: 2012-07-26)
4,733 reads
Der Sommer 2012 ist schon ein interessantes Phänomen
– gestern Sonnenschein mit 34°, und heute wieder Regen mit 20°. Gestern war...
2012-07-25
1,293 reads
In the last blog posting about AlwaysOn you have seen how you can deploy your first
Availability Group through the AlwaysOn...
2012-07-25 (first published: 2012-07-23)
7,106 reads
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...
By Vinay Thakur
Continuing from Day 6 we learned Embeddings, Semantic Search and Checks, on Day 7...
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
Comments posted to this topic are about the item Restoring On Top I
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