Give and Take
This Friday Steve Jones asks about capital at work and does it affect the way you do business.
2008-02-22
40 reads
This Friday Steve Jones asks about capital at work and does it affect the way you do business.
2008-02-22
40 reads
2008-02-21
178 reads
2008-02-20
91 reads
2008-02-19
58 reads
A perspective from Richard Collins on the creation of a government IT profession in the UK.
2008-02-18
71 reads
2008-02-18
78 reads
This year TechEd is across two weeks, with a different focus for each. Which one would you rather attend.
2008-02-15
39 reads
Why don't we have updates, patches, and service packs slipstreamed into the base product for new installs?
2008-02-14
138 reads
Using the Identity Property might be one of the more debated features of SQL Server. This editorial was originally published on Mar 5, 2008. It is being re-run as Steve is on vacation.
2008-02-11
287 reads
Windows 2008 RTMs, a change from the SQL Server support team, and a Jump Start for Katmai.
2008-02-11
49 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