Viewing 15 posts - 976 through 990 (of 1,248 total)
Table a database offline;
Copy the database files to your target server;
Attach the copied files on the target server.
April 3, 2007 at 9:03 am
Index should not be changed. Dropping indexes before truncating a table is for breaking relations between tables.
April 3, 2007 at 9:01 am
As David stated, applying SP4 may fix your problem. Here is a link, which may be helpful to you.
April 3, 2007 at 8:56 am
Remember, view is a virtual table, not a real one. You need to put data into a real table.
April 3, 2007 at 8:51 am
Did you read this article posted about 2 years ago?
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=169&messageid=247574
April 3, 2007 at 8:45 am
You may try to set max memory for SQL Server under the Memory tab in the SQL Server Properties dialog.
April 3, 2007 at 8:22 am
It is hard for me to understand your question. My guess is:
SELECT veh.*, config.* FROM veh, config WHERE veh.make = config.make
April 3, 2007 at 8:17 am
Based on the following link, the error may come from inserts.
http://support.microsoft.com/kb/306518
It is hard to explain why your system works for about one week after rebooting, unless your data...
April 2, 2007 at 4:07 pm
Are you the administrator on the SAN drive? Is there any contraint (allocation size) to your account ?
April 2, 2007 at 4:00 pm
You can export SQL Server data into excel file without using stored procedures.
April 2, 2007 at 9:26 am
No question is stupid.
Based on my understanding, the error (DB-Library) you mentioned came from a "procedure" built-in SQL Server (internal SQL Server procedure).
Using the SQL profiler may trace some...
March 30, 2007 at 8:46 am
Did you try to import the data in master..sysservers from your source server?
March 30, 2007 at 8:37 am
My input:
Adding indexes may increase the size of a database tremendously, in particular, for a huge table with about 30 indexes. It will not surprise me if you tell...
March 30, 2007 at 8:33 am
The number of pages may not be a good parameter for planning a disk capacity. I would like to use the data of used space instead.
March 30, 2007 at 8:19 am
The backup device is used with other 2 devices. Backup data are evenly split into these devices (members). To find the members, you can choose Properties by right-clicking device icons. Then,...
March 29, 2007 at 10:33 am
Viewing 15 posts - 976 through 990 (of 1,248 total)