A SQLServerCentral.com Christmas
In the spirit of celebration at the end of the year, a break from the usual routine. Happy holidays to all and hopefully no one is working this weekend.
2007-12-24 (first published: 2004-12-24)
4,404 reads
In the spirit of celebration at the end of the year, a break from the usual routine. Happy holidays to all and hopefully no one is working this weekend.
2007-12-24 (first published: 2004-12-24)
4,404 reads
Another great article from David Poole looking at more user stereo types that the IT world must deal with. Read on for smile and a little fun.
2004-09-16
10,648 reads
What happens when you have a day job, a web site, a new job at work, and a baby? Chaos! See what Andy's been up to the past few months. It's off topic from SQL of course, but it contains an interested bit or two.
2004-05-14
5,535 reads
It's not SQL Server related, but take a break and see how you do. The highest I've seen so far is 1602. If you beat it send a screen shot (small, please) to sjones@sqlservercentral.com
2004-02-20
1,248 reads
Hopefully you never hear any of these from your sysadmin...
2003-12-31
8,126 reads
Another article by Joel Spolsky, this one discusses how and why he designed new office space for his development team. Maybe a little over the top, but we think he has the right idea.
2003-09-26
1,592 reads
2003-09-01
5,841 reads
Alien imposter? No, not that complicated. Andy saw an actor on TV that according to some looks JUST like our own Steve Jones. Steve is a good sport about such things and provided several photo's so you could judge for yourself. Of course, there is a little more to the story - read the article to see!
2003-05-26
4,035 reads
2002-05-15
2,962 reads
2002-05-08
3,253 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