Viewing 15 posts - 46 through 60 (of 148 total)
You can use the Performance counter (inbuilt winodws Tool) and Performance related DMV's to get sql server workload .
please refer following PPT , it may help you
November 30, 2012 at 4:16 am
runal_jagtap (11/29/2012)
Good Idea if i have one or two DB's..But there are 170 + Db's :w00t:
is that your Production server ?
November 30, 2012 at 12:44 am
But please do post the exact error of your jobs .
use the method Gail provided in last post.
November 30, 2012 at 12:41 am
abhishekkulkarni1284 (11/29/2012)
Thanks...
November 30, 2012 at 12:40 am
abhishekkulkarni1284 (11/29/2012)
November 29, 2012 at 5:54 am
runal_jagtap (11/29/2012)
i got outut - the files are moved . next time when DB starts..
Fine enough..then i took the DB to OFfline state..
Now i...
November 29, 2012 at 4:57 am
1) Space Issue
2) Imagine if you have 100 of transactional log backup after full backup.Now if you want to restore database or in case of disaster ,you need to...
November 28, 2012 at 2:42 am
what is the output of
select spid,db_name(dbid) from sysprocesses where db_name(dbid) ='DatabaseName'
November 23, 2012 at 5:29 am
Thanks ,good question.. learn first time about STUFF and then answered it 🙂
November 22, 2012 at 10:54 pm
to get when your SQL server restarted last time
SELECT[sqlserver_start_time]
FROM[sys].[dm_os_sys_info]
To get when databases accessed last time , use the script provided by Lowell in below thread
http://www.sqlservercentral.com/Forums/Topic1280879-1550-1.aspx
November 22, 2012 at 3:28 am
Not sure which version of SQL server you are using exactly 😉
its different in post and different in Subject line
November 22, 2012 at 3:01 am
No,You can not check the index usage stats for a DB in SQL server 2000 ,as there is no DMV's in SQL server 2000 .
You can use the Profiler,...
November 22, 2012 at 2:56 am
k.thanigaivel (11/22/2012)
No, please try thisalter table Atest drop constriant PK_ATest
alter table Atest alter column id bigint
alter table Atest add constriant PK_Atest primary key clustered (id)
that isn't like you are logically...
November 22, 2012 at 12:44 am
The test result i post,was done on table without primary key .
in OP's case,he want it to alter column which having primary Key .
if you Use
alter table tablename...
November 22, 2012 at 12:02 am
Viewing 15 posts - 46 through 60 (of 148 total)