Local Database Issues
Steve Jones talks about the issues with using a local database in your application.
2016-11-14
72 reads
Steve Jones talks about the issues with using a local database in your application.
2016-11-14
72 reads
2016-11-11
165 reads
2016-11-10
128 reads
Today we have a guest editorial from Ben Kubicek as Steve is away from the office. It is hard to be humble, but it is needs to learn something new.
2019-11-27 (first published: 2016-11-07)
476 reads
ODBC is the closest thing we have to a universal standard for data access across platforms, applications and data sources. So why doesn't DocumentDB support it?
2016-11-07
116 reads
This week Steve Jones has a bit of a competition. Share with him how fast you can back up a 1TB database.
2016-11-04
209 reads
Today Steve Jones looks at the relative cost of hardware and how we sometimes cause ourselves issues by not spending enough.
2019-12-20 (first published: 2016-11-03)
270 reads
We depend on data quality to run our businesses efficiently. However, it's a problem when we mess that data up on purpose.
2016-11-02
82 reads
The differences in our understanding of technologies can make for some communication challenges.
2020-11-05 (first published: 2016-11-01)
168 reads
The release of Analysis Services in Azure means the platform has a future.
2016-10-31
71 reads
By Vinay Thakur
Continuing from Day 2 , we learned introduction on Generative AI and Agentic AI,...
Quite the title, so let me set the stage first. You have an Azure...
By HeyMo0sh
In the realm of software development and content creation, the deployment pipeline serves as...
Comments posted to this topic are about the item A Quick Restore
Comments posted to this topic are about the item Guarding Against SQL Injection at...
I have a quick question on Ola Hallengren Index Optimize Maintenance . Do we...
While doing some testing of an application, I wanted to reset my environment after doing some testing with this code:
USE DNRTest BACKUP DATABASE DNRTest TO DISK = 'dnrtest.bak' GO /* Bunch of stuff tested here */RESTORE DATABASE DNRTest FROM DISK = 'dnrtest.bak' WITH REPLACEWhat happens if this runs, assuming the "bunch of stuff" isn't anything affecting the instance. See possible answers