Viewing 15 posts - 121 through 135 (of 546 total)
There are many T-sql scripts available online to do the same.
http://www.sql-server-performance.com/articles/dba/job_report_p1.aspx
http://www.sqlservercentral.com/scripts/Maintenance+and+Management/61448/
just to start with a few.
June 23, 2009 at 11:04 am
No there will be no problem, infact it is advisable to do so, even with Databae logs.
only if you are on SAN with RAID 10 will it really make a...
June 23, 2009 at 11:01 am
looks fine.
Also check to see on the SQL instance that the user is shown with proper kerberos auth in sys.sm_exec_connections.
June 23, 2009 at 10:39 am
There coule be a SPN issue here:
Check this out for Quick answer: http://blogs.msdn.com/darwin/archive/2005/10/19/482593.aspx
June 23, 2009 at 8:43 am
select * from sys.dm_exec_sessions
select * from sys.dm_exec_requests
select * from sys.dm_exec_connections
you can join these 3 to filter more info, but connections and sessions should retuen you whats needed.
Or sysprocesses.
June 23, 2009 at 8:36 am
Do you mean , you are updating the value directly in the system tables. if yes: this is not advisable and should be dne through the Job properties only. as...
June 23, 2009 at 8:25 am
Does this user own to db_owner schema. according to your text, it sounds it does...
you will have to transfer the db_owber/dbo to some other user and then the user can...
June 23, 2009 at 8:23 am
you should be able to create a new column and make it identity and primary key:
Question: will this default your existing primary key column and uniqueness..
ALTER TABLE ABC
ADD NEWCOL int...
June 23, 2009 at 8:08 am
Personal Advice: Take a Chain saw and you know what to do:
Now Serious: Cant you get rid of any historically records/data into a seprate database.
or you can create multiple...
June 23, 2009 at 8:04 am
Or this:
Almost the same as above Query, but this will give you the column names as UPPER CASE in the result set:
select 'sp_rename @objname='+''''+Table_name+'.'+column_name+''''+', @newname= '+upper(''''+column_name+'''')+',@objType='+''''+'COLUMN'+''''
from information_schema.columns
June 18, 2009 at 2:19 pm
http://support.microsoft.com/?id=955706
http://msdn.microsoft.com/en-us/sqlserver/bb895958.aspx
and CU=Cumulative Updates
June 18, 2009 at 12:22 pm
As i dont know the complete details as yet but here is a attempt:
Was this workiing ok before this:
did you move the databases over to new server Or did you...
June 18, 2009 at 9:28 am
I see you aare at SP2.
you can try applying any CU. or SP3 there are many resolved issues available after SP2.
read through the issue List before making the attempt.
June 18, 2009 at 9:23 am
Viewing 15 posts - 121 through 135 (of 546 total)