Viewing 15 posts - 91 through 105 (of 110 total)
Adi Cohn (2/4/2009)
February 4, 2009 at 10:05 am
Maybe I didn't explain clearly my request.
I will give another sample.
Create table #t(rating int,bookid int)
insert into #t
select 97, 201
union all
select 96,100
union all
select 95,300
union all
select 50,100
union all
select 10,201
union all
select 30,300
need...
February 4, 2009 at 9:19 am
thanks for reply.
But in this link, It said, one array, one logical drives has high performance. I am so confused.
An issue has been identified on the MSA1000, MSA1500...
February 3, 2009 at 2:39 pm
our new server is production server. It will be heavily loaded. In my plan, even though we will develope DW, it should be considered to use a seperated server. not...
January 7, 2009 at 12:00 pm
I didn't get SID using your query, just return empty recordset. I guess I passed the wrong parameter.
I still try to get result from your query. actually it is the...
January 6, 2009 at 10:14 am
Thanks for your reply.
I have permision to logon to AD server. But I don't know how to retrieve SID for this user.
Another thing I just noticed is that error...
January 5, 2009 at 2:19 pm
Very very good article. From here I learn how to use Tally table, QuoteName, Grouping.
Thank you!:D
December 5, 2008 at 1:13 pm
I met this problem before. I just applied Sp2 to Client tools, then every thing is ok.
December 4, 2008 at 12:03 pm
Thanks for all replys.
Actually, I did meet Check DB problem when I run scheduled maintenance job to do integrity check. It only check master database. For this problem, I guess,...
November 25, 2008 at 2:56 pm
What authentication mode do you use?
Can you connect to this server using IP address?
November 14, 2008 at 2:09 pm
I understand your saying.
but if not implement replication between two clustering active/active nodes or just two seperate nodes (no auto failover) , what 's the best way to do...
August 20, 2008 at 12:39 pm
Thanks for your reply.
Web users just query most databases. Internel users maybe occationlly change table structure/add Sps/DML. For my databases, Changes in one part is manually updated. using Merge replication...
August 19, 2008 at 3:06 pm
this is a dedicated server. ram is 8G. 4 CPU.
Only this SP got cachemiss, others are ok.
July 10, 2008 at 12:59 pm
Carl Federl (6/26/2008)
You need to find a real expert.
Here is an approach to confirm if...
June 26, 2008 at 9:06 am
select d2.data_size_mb - d1.data_size_mb,d2.data_size_mb,d2.run_Date
from db_size d1 ,db_size d2
where d1.data_id<d2.data_id and
d2.data_id in (
select min(data_ID) from db_size
where data_id>d1.data_id
)
order by d2.data_ID
April 28, 2008 at 1:01 pm
Viewing 15 posts - 91 through 105 (of 110 total)