Viewing 15 posts - 2,356 through 2,370 (of 2,386 total)
The target table must be already exist before you run the insert into statement.
Or you can run select * into targettable from originaltable if the target table hasn't been...
October 12, 2002 at 5:54 pm
How do you setup the linked tables to SQL Server in Access? If they are connected to SQL Server via ODBC and the ODBC configuration and SQL Server name havn't...
October 11, 2002 at 9:07 pm
Partitioned View is the solution you are looking for. With partitioned view, The original table is replaced with several smaller member tables and each table stores a horizontal slice of...
October 11, 2002 at 5:50 pm
I guess the statement runing in your client machine may be executed in parallel because the machine has two CPUs. The default SQL Server configuration for 'max degree of parallelism'...
October 11, 2002 at 11:39 am
When you login into Outlook, which NT account did you use? Do you use same account to start SQL Server? The SQL Mail test only check the mail profile and...
October 9, 2002 at 2:50 pm
can you run select * from sysprocesses to see what are the status, waittype and lastwaittype of this spid?
October 9, 2002 at 2:43 pm
Two options.
1. Create DTS package to load the data. Search http://www.sqldts.com article "Looping, Importing and Archiving" for sample.
2. Use xp_cmdshell to load all data files name into a...
October 9, 2002 at 2:29 pm
Before you restart SQL Server, user command kill with statusonly to generate a progress report on a given spid that is being rolled back to see how far the rolled...
October 9, 2002 at 2:13 pm
Are those files be well organized? For example, Are they in same directory, has same format/structure, file name contains date info. Is this a one time process? What type of...
October 9, 2002 at 1:50 pm
I think you need to run DBCC CHECKTABLE against those tables to see whether you receive any error message.
October 9, 2002 at 9:09 am
If you have space shortage issue and customer does not require recovery to any point in time on database failure, you can simply set the database recovey mode to 'simple'...
October 5, 2002 at 9:37 pm
DBCC SQLPERF(LOGSPACE)
You can alos setup an alter to monitor your database transaction log and fire the backup log job once the log size excesses the threshold.
October 4, 2002 at 6:09 pm
Don't think you can do it. You may have to transfer the data into second server and place tables into different file groups.
Why just use Copy Database Wizard, Backup...
October 4, 2002 at 5:58 pm
Viewing 15 posts - 2,356 through 2,370 (of 2,386 total)