Viewing 15 posts - 1,231 through 1,245 (of 1,409 total)
From the MSDN site http://msdn.microsoft.com/en-us/library/ms345392.aspx I read the following:
An identical view of reporting data from all servers.
This assumes that all of the server instances are configured identically, for example, that...
January 8, 2009 at 12:20 am
Indianrock (1/5/2009)
Multiple log files: I thought the recommendation was one log file per cpu, for performance?
That's recommended for the data-files of the TempDB... (also keep them the same size)
January 5, 2009 at 5:56 am
madhu.arda (1/2/2009)
as you said We added a scheduled job to change the setting to ON just before the REORGANIZE of indexes and a job to set it back to...
January 3, 2009 at 7:57 am
Schedule this command in a job to delete all backups that are older then 2 days:
DECLARE @Date DateTime
SET @Date = GetDate() -2-- determine date of day before yesterday
EXECUTE master.dbo.xp_delete_file 0,...
December 18, 2008 at 11:20 pm
Thanks for all the replies...
I've stopped my trace and created a new one, now with saving results to a file...
December 18, 2008 at 10:46 am
Are you sure the job is running during the weekend? SQL itself is not aware of the weekday when running a job.
December 18, 2008 at 1:45 am
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
Viewing 15 posts - 1,231 through 1,245 (of 1,409 total)