Tagged Questions
6
votes
8answers
2k views
SQL Batched Delete
I have a table in SQL Server 2005 which has approx 4 billion rows in it.
I need to delete approximately 2 billion of this rows, but if I try and do it in a single transaction, the transaction log ...
4
votes
1answer
345 views
RESTRICTED_USER
Before changing database schema I issue:
ALTER DATABASE SET RESTRICTED_USER
On completion:
ALTER DATABASE SET MULTI_USER
I understand that a running transaction will be permitted to continue ...
4
votes
4answers
318 views
Backing up SQL Database for Reports
I'm looking for some help/suggestions for backing up two large databases to one server dedicated to reports. The situation is;
My company has two databases for its internal website. One for the UK ...
3
votes
1answer
334 views
Can I run DBCC CHECKDB from .NET?
I am writing a scheduled job to mimic a SQL Server maintenance plan for SQL Express. (I have to do this because SQL Agent and related tools don't exist for SQL Express)
One of the steps is to do a ...
2
votes
3answers
548 views
Is it possible to restore a backup of a SQL Server 2008 database onto an instance of SQL Server 2000?
Is it possible to restore a backup of a SQL Server 2008 database onto an instance of SQL Server 2000?
I need to work on an sample application for which database backup is in sql server 2008. But I'll ...
1
vote
4answers
198 views
SQL Server Scheduled Job - says its running with no errors but doing nothing
I have a SQL Server scheduled job which has been running for about 6 months every night.
However, it has stopped doing what it should (transfering data from one database to the next). There are no ...
1
vote
4answers
147 views
Apply upgrades (application related) to database
Since I've not done this before I am not sure if the way I am planning to do this is okay or is there a better way. Like using Windows Installer or Install Shield or Windows Installer XML (WiX) ...