Viewing 15 posts - 121 through 135 (of 1,364 total)
If owner of all the jobs is sa then sqlagentreader role suits your scenario.
April 15, 2010 at 2:09 pm
Any other reason apart from what Henry has suggested above!
April 15, 2010 at 1:51 pm
Thanks for sharing your experience!
MJ
April 14, 2010 at 3:23 pm
Try whats stated at-->http://blogs.msdn.com/raulga/archive/2007/07/12/disaster-recovery-what-to-do-when-the-sa-account-password-is-lost-in-sql-server-2005.aspx
MJ
April 14, 2010 at 2:32 pm
Does the 90 day clock start counting from when I changed the login?
Yes. From the day you change the password..
April 13, 2010 at 9:01 am
If you don't find anything useful in logs then try running the backup command in ssms manually to see if it o/p's any error..
MJ
April 8, 2010 at 3:17 pm
Queuing isn't the best indicator, but Avg Disk Sec/Read and Avg Disk Sec/Write could be used.
Usual recommendations for those counters are 10-50ms.
MJ
April 8, 2010 at 2:38 pm
Got this from this forum-->
SQL Recon from Special Ops Security is free and does a great job as well as doing some quick analysis like blank passwords and a best...
April 6, 2010 at 2:02 pm
For object level permissions:
--SQL 2005 ONLY
--This script will generate all user permissions and the code to
recreate them as required.
SELECT C.name 'Schema',
...
April 6, 2010 at 12:52 pm
Try:
SELECT s.name AS schema_name, o.name AS table_name, i.name AS index_name,
ps.partition_number, ps.avg_fragmentation_in_percent, ps.avg_page_space_used_in_percent, ps.fragment_count, ps.page_count
FROM sys.dm_db_index_physical_stats (DB_ID(), NULL, NULL, NULL, 'limited') ps
...
April 3, 2010 at 4:37 pm
On similar lines of Lowell:
Try this:
select
o1.name as Referencing_Object_name
, c1.name as referencing_column_Name
, o2.name as Referenced_Object_name
, c2.name as Referenced_Column_Name
, s.name as Constraint_name
from sysforeignkeys fk
inner join sysobjects o1 on fk.fkeyid = o1.id
inner join...
April 1, 2010 at 3:48 pm
Run sp_spaceused under your database and post the results here.
MJ
April 1, 2010 at 3:33 pm
Try this script. I found it on this forum.
--see growth from backup size in pages.
DECLARE @dbname sysname
SET @dbname = DB_NAME()
SELECT CONVERT(char, backup_start_date, 111) AS [Date], --yyyy/mm/dd format
CONVERT(char,...
March 30, 2010 at 2:43 pm
Maybe a reboot will help. Not sure why its not displaying rest of the features.
March 30, 2010 at 1:01 pm
Viewing 15 posts - 121 through 135 (of 1,364 total)