Article re-featured on SQLServerCentral
The second article I had published on SQLServerCentral, ANSI PADDING, Trailing Whitespace, and Variable Length Character Columns, was re-featured in...
2009-07-31
1,414 reads
The second article I had published on SQLServerCentral, ANSI PADDING, Trailing Whitespace, and Variable Length Character Columns, was re-featured in...
2009-07-31
1,414 reads
ActiveAugust started as a discussion on Twitter and Mike Walsh (@mike_walsh) has set the bar with his blog post about...
2009-07-28
1,199 reads
Andy Warren and crew at OPASS have announced that SQLSaturday 21 – Orlando will be held at Seminole Community College, 100...
2009-07-28
1,299 reads
As part of my work I need to be a “Jack of all trades” meaning I not only need to...
2009-07-24
641 reads
How many of you have said, “I have a real hard time remembering names” or “Excuse me, I know we...
2009-07-21
413 reads
Have you ever seen this error when you have setup database mail:
The mail could not be sent to the recipients...
2009-07-20
429 reads
Last night I attended, along with about 20 others, the latest and greatest OPASS meeting. I got there early to...
2009-07-15
531 reads
There may be some people wondering why I go by the name @unclebiguns on Twitter. I am basing this on...
2009-07-15
397 reads
Hey, Orlando area SQL Server folks, don’t forget the OPASS meeting 6pmTuesday, July 14th at End to End Training (map). ...
2009-07-13
445 reads
I recently saw that Steve Jones had posted an update on his 2009 goals and realized that is was about...
2009-07-07
368 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