Viewing 15 posts - 16 through 30 (of 659 total)
using the same script how would i compare 2 identical databases on diffrent servers. I would like to find out if there is any difference in the numbers of tables...
March 31, 2009 at 11:54 am
yes. Data will be updated by a job except that no one else will insert any kind of data.
March 30, 2009 at 1:31 pm
you are right but that is acceptable. we dont update anything directly in production, we only read from production. update will be made only once when we plan on stage...
March 30, 2009 at 12:59 pm
Any Ideas on how to calculate / estimate exact restore time of a database ?
March 30, 2009 at 11:19 am
I am trying to calculate restore time for all prod databases which range from 300gb to 1.4TB. Once i analyse this i want to implement backup restore for my production...
March 29, 2009 at 8:16 am
Could some one let me know the diffrence here.
1. Query Time out Expired
2. Execution terminated by the provider because a resource limit was reached.
3. Query Wait time - what happens...
March 26, 2009 at 8:44 am
Here is my configuration:
SELECT * FROM sys.configurations
WHERE configuration_id = 1541
1541query wait (s)-1-12147483647-1maximum time to wait for query memory (s)11
March 26, 2009 at 8:26 am
Here is a sample view , almost all our views are like this.
ALTER view [dbo].AllRevBudget as
select *
from RevPa rp
where rp.RevID IN ('CA', 'GA')
UNION ALL
select *
from Revpt rt
where REvID IN ('CA',...
March 26, 2009 at 7:18 am
does it mean OPENQUERY will use less resource than regular query? what happens when openquery is used with respect to the timeout and using resources.
March 26, 2009 at 7:03 am
Usually this us happening when users pull large amounts of data from the views through link servers. I am not sure how to manage these data reads from cross over...
March 26, 2009 at 6:58 am
that option is already unchecked, we usually dont check that option.
March 25, 2009 at 12:37 pm
It was created someitm in mid 2008 and i dont think i will have traces for that long.
March 25, 2009 at 11:11 am
I dont have information on who created that account, i just have created date.
March 25, 2009 at 11:06 am
I understand that about model but here it is dynamic, users keep on changing, I would like to do in a proc where i can pass database name and logins...
March 24, 2009 at 11:37 am
when you say REBUILD clustered index does it means drop constraint and re create it or do we need to use REBULD syntax, if so i know creating index on...
March 22, 2009 at 1:52 pm
Viewing 15 posts - 16 through 30 (of 659 total)