Viewing 15 posts - 1,246 through 1,260 (of 1,417 total)
Thanks for the reply Paresh.
But when I stop the trace, I guess I won't be able to see the events logged by the trace. Is there any possibility to see...
December 18, 2008 at 1:41 am
1. You need to test updates/service packs/hotfix on a test environment. The best scenario is when this test environment matches the production environment. This includes the SQL instance (incl. databases)...
December 18, 2008 at 1:35 am
SQL does not keep track of user actions. You can monitor this by setting up a trace with SQL Profiler and filter on the specified user. But be aware that...
December 18, 2008 at 1:22 am
Vince Lacoboni wrote a nice article about moving the system databases, including scripts to do it...
see http://www.sqlservercentral.com/articles/Administration/2605/
December 9, 2008 at 11:52 pm
Here is what I tried to do once:
I added a new log-file on the new location and then make the original log-file empty with DBCC SHRINKFILE and the EMPTYFILE clause....
December 8, 2008 at 8:12 am
You can query a DMV that holds the rowcount for tables or count the rows from the table itself:
DECLARE @Rows Integer
-- query the DMV
SELECT
@Rows = row_count
FROM
Sys.dm_db_partition_stats
WHERE
object_id = object_id('{tablename}')
PRINT @Rows
-- or...
December 4, 2008 at 4:18 am
Lynn Pettis (11/26/2008)
Day 1 ...
November 28, 2008 at 2:11 am
For my knowledge (no hands-on experience) :unsure: : You need enough space on both filegroups (on the old AND on the new location). The old location will eventually free up...
November 27, 2008 at 11:30 pm
use the stored procedure: sp_change_users_login (see BOL for usage)
November 27, 2008 at 6:28 am
MarkusB (11/27/2008)
November 27, 2008 at 6:20 am
GilaMonster (11/27/2008)
HanShi (11/27/2008)
November 27, 2008 at 6:13 am
Recreating the clustered index will not move the actual table. It will only move the location of the clustered index. To move the table to a new location you have...
November 27, 2008 at 5:59 am
There was initially a 'bug' in SQL 2005 where the default of PAGE_LOCK was OFF. With SP2 this setting was corrected and set to default ON. So be sure that...
November 27, 2008 at 5:51 am
Did you refresh the list of jobs in SSMS? Try if restarting SSMS will solve the issue.
Are you enable to view the properties through a Remote Desktop (or physically) on...
November 27, 2008 at 5:40 am
In the WHERE clause of your query you define AND operator. That will show results of it matches results from all three views. If you need the result of every...
November 24, 2008 at 5:20 am
Viewing 15 posts - 1,246 through 1,260 (of 1,417 total)