Viewing 15 posts - 1,381 through 1,395 (of 2,387 total)
It sounds like your query runs in parallel. You should see whether it runs in parallel from the execution plan. You could also set "max degree of parallelism" to 1...
August 6, 2003 at 7:28 am
Remote servers are set up in pairs. To set up a pair of remote servers, configure both servers to recognize each other as remote servers. Then, verify that configuration options...
August 6, 2003 at 7:15 am
Depending on the database recovery mode. If it is 'simple', you can backup log with truncate_only and dbcc shrinkfile. If database is in 'Full Recovery' mode, you should backup the...
August 5, 2003 at 1:38 pm
SELECT DATABASEPROPERTYEX('yourdbname', 'Recovery')
August 5, 2003 at 1:26 pm
Check Microsoft Baseline Security Analyzer v1.1.1 at http://www.microsoft.com/downloads/details.aspx?FamilyID=9a88e63b-92e3-4f97-80e7-8bc9ff836742&DisplayLang=en
The latest service pack is sp3a and security patch is ms03-031.
August 5, 2003 at 11:36 am
Do both servers have same service pack and MDAC version?
August 4, 2003 at 10:19 am
Which patch do yo refer to? If you talk about SQL Server patch, The patch installation will affect only the instance you want to applied. You may have to reboot...
August 4, 2003 at 10:17 am
Check your machine application and system logs. You may have some kind of hardware issues with the RAID disks.
August 4, 2003 at 10:10 am
Dependin on which service pack do you have in these workstation running MSDE? You may have to block TCP port 1433 in your firewall.
August 1, 2003 at 11:02 am
I would break the update into small batches , loop it and print the status at end of each batch.
August 1, 2003 at 8:10 am
Did you remove 'BUILTIN\Administrators' from SQL Server Logins? If you are, you have to grant 'NT Authority\System' to access SQL Server with 'sa' right.
August 1, 2003 at 8:09 am
Use SET IDENTITY_INSERT to allow explicit values to be inserted into the identity column of a table.
August 1, 2003 at 7:29 am
Viewing 15 posts - 1,381 through 1,395 (of 2,387 total)