Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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
2answers
75 views

Java, proper approach for controlling Linux server from within Java code?

I've been tasked with setting up an automated system that will have to do some things on the Linux server that, from my understanding and research thus far are not able to easily be done from within ...
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
0answers
194 views

How to determine the size of a Full-Text Index on SQL Server 2008 R2?

I have a SQL 2008 R2 database with some tables on it having some of those tables a Full-Text Index defined. I'd like to know how to determine the size of the index of a specific table, in order to ...
1
vote
1answer
1k views

Rails, Extjs and SQL Server

So I'm running Extjs on top of Rails 2.3.3 against a SQL Server DB. I'm able to pull data from the DB and display it, but I'm unable to create, update or destroy. Oddly enough, it's not throwing ...
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) ...
0
votes
0answers
92 views

how to add a user to a mysql database using vb.net?

i have two tables on a MYSQL database called "access" and "employee". The layout for "access" is below: Access: (Table Name) rights_id (Column Name) username (Column Name) name (Column ...
0
votes
2answers
481 views

How to calculate the total memory occupied by the database

I am using sqlserver 2008, How can I calculate the total memory occupied by the Database with tables (>30) and also data in it. I mean if I have DB (DB_name) and with few tables(tblabc, tbldef......) ...