Viewing 15 posts - 496 through 510 (of 1,248 total)
Is your server a cluster?
Are your other drives shared?
March 19, 2008 at 11:22 am
What do you mean array 0, 1, 2, 3, ...?
If your configuration will be built on a single RAID 5, there is no difference in performance.
March 19, 2008 at 9:39 am
This kind of task always takes disk space, I mean a lot.
You may shrink your database before starting your re-indexing.
You may try to drop the index and re-create it. As...
March 19, 2008 at 9:30 am
How about this one if you run manually?
sp_msforeachdb 'EXEC sp_spaceused'
March 19, 2008 at 9:15 am
Although a virtual machine may have ample resources, each component may not have enough after resource allocation. You need to check it.
OK, let us assume each of your system has...
March 19, 2008 at 8:47 am
It will be easy if your table has a column with timestamp data type. Here is an example.
DECLARE @Date DATETIME
SELECT @Date = MAX(DateUpdated) FROM myTable
IF @Date > DATEADD(d, -1, GETDATE())
BEGIN
...
March 19, 2008 at 8:27 am
DBCC OPENTRAN can tell you what tasks are in process.
March 18, 2008 at 8:58 pm
There are two levels of monitoring. One is on SQL database server. Another is on the OS level.
To check the connection to an SQL Server, you can build SQL Profiler,...
March 18, 2008 at 8:55 pm
Betty Sun (3/7/2008)
OK I will use full name to create a table.
The question is: is that possible, I...
March 18, 2008 at 8:07 pm
If your whole server is configured as RAID 5, separating your data and log files will not enhance performance.
March 18, 2008 at 1:53 pm
I have no solution. I mean you may have to login the server to connect the SSIS.
Here is a link. May it help. But I still wish someone had a...
March 18, 2008 at 1:31 pm
Could you add your html code in your CASE clause if you use web to generate your report? I am just wondering.
March 18, 2008 at 1:25 pm
Sometimes, after killing a process, we can see rollback. It stays there forever.
I came across the situation below.
I killed a LiteSpeed backup. The status of the process stayed in rollback...
March 18, 2008 at 1:20 pm
What is your hardware structure? What RAID do you use?
March 18, 2008 at 1:05 pm
Viewing 15 posts - 496 through 510 (of 1,248 total)