Stop and Start Services - SQL School Video
SQL School covers a basic topic this week. MVP Andy Warren shows the various ways to stop and start your services.
2009-07-30
5,190 reads
SQL School covers a basic topic this week. MVP Andy Warren shows the various ways to stop and start your services.
2009-07-30
5,190 reads
I was doing some maintenance on the SQLSaturday web site recently and one request kinda low on the list was...
2009-07-29
3,582 reads
I currently write the editorial for the PASS Connector which is published every two weeks as part of my role...
2009-07-28
1,440 reads
I ran across this a while back and it’s been on my ‘to blog about’ list for too long. Open...
2009-07-28
1,463 reads
Bill Graziano just made the announcement about the changes to the bylaws being published. No sweeping changes, for the most...
2009-07-28
560 reads
Just in case you don’t read the Connector today, here’s a link to an interview that PASS HQ did with...
2009-07-28
1,536 reads
I had hoped to announce this much sooner, sometimes the wheels turn slowly. But turn they do! We’re back at...
2009-07-28
1,450 reads
Steve Jones sent me this link on time management that discusses two things – getting ‘ambushed’ at the start of the...
2009-07-28
1,610 reads
Learn how you can configure your SQL Server instance using T-SQL code and sp_configure. MVP Andy Warren hosts this SQL School video.
2009-07-28
5,007 reads
2009-07-28
514 reads
Next Monday, Marchg 9, 2026, my one-day live online training SQL Server 2025 Unleashed:...
By HeyMo0sh
As someone who’s worked with data for over 20 years and with many cloud...
By HeyMo0sh
2025 belongs to the AI startups. If you peek into the tech headlines, you’ll...
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