Tagged Questions

2
votes
1answer
27 views

How do I delete files from a table in MSDE 2000 that is selected by 3 joins?

I have a VB6 program that uses a n Access backend. The query that I am currently using is sQuery = "DELETE tblResultNotes.* " & _ "FROM (tblJobs INNER JOIN tblResults ON ...
2
votes
4answers
2k views

Excessive reserved space on SQL Server

We have a database running under MSDE (SQL 2000, service pack 4) that is reserving massive amounts of excess space. Using sp_spaceused for each table gives a total reserved size of 2102560 KB, a data ...
1
vote
2answers
1k views

Cannot access WSS 3.0 sites after movind Content and Config DBs

Problem: No access to internal sites after new Instance of SQL was installed on MS SQL Server Description: I've got a WSS 3.0 installed on the W2K3 Sever. Originally, there was only one Instance of ...
0
votes
4answers
38 views

How do I create a new Database and new tables in SQL MSDE 2000 programmatically with C#.net?

I am writing a program that will create a new datatbase, then add tables to that datatbase. Here is my code.... InsertTable("Create Database iBlast", "Null"); InsertTable("Create Table ...
0
votes
1answer
157 views

MSDE vs SQL Server

There is a project that a developer is suggesting to use MSDE instead of SQL Server, I need to know the differences and limitations of MSDE to make sure it will be able to handle our project.
0
votes
1answer
72 views

How do I start MSDE2000A (mssql$netsdk) from cmd in Windows 7?

I'm trying to install MSDE2000A on a Windows 7 machine, and the database book I'm using described doing so through the command line. First I installed it to C:\< folder >. Everything went fine ...
0
votes
2answers
459 views

SQL query alignment change when Arabic characters are inserted

I have a query like this SET QUOTED_IDENTIFIER OFF SET DATEFORMAT 'mdy' INSERT INTO TABLE1 (AccountID, TimeStamp, UserID, NodeID, Deleted, UserPriority, ParentRecordID, NodeLevel, Name, ...
0
votes
2answers
191 views

Querying data from multiple clustered tables as one unified

I've recently started work on a project which involves creating a web-based reporting interface for a fairly old software responsible for managing some access control hardware like electronic door ...