Viewing 15 posts - 1,996 through 2,010 (of 2,043 total)
see
http://support.microsoft.com/lifecycle/search/
for life cycle management of microsoft products.
General support for sql server 7 will end at the first of 2006.
General support site for sql server
September 15, 2005 at 11:16 am
1)What is Windows 2000 Compatible Access Group ?
2)Sql server version:
SELECT @@VERSION
or
xp_msver (see books on line)
September 15, 2005 at 11:04 am
what recovery model are you using (full, simple, bulk)?
Truncate table isn't logged
The TRUNCATE TABLE statement is a fast, nonlogged method of deleting all rows in a table. It is almost...
September 14, 2005 at 3:18 pm
This question has many answers.
The number of users mostly depends on your hardware/ quality of software.
A quick internet searching gives a try to compare sql server 2000 vs oracle 9
September 14, 2005 at 3:11 pm
SELECT
CF.FileId
,CF.Transid
From #UsFavs UF WITH (NOLOCK INDEX=IDX_2)
, Cus_file CF WITH (NOLOCK)
Where
UF.Transid = CF.Transid
ORDER BY P.LastNm,P.FirstNm
I'm not familiar with NOLOCK clauses, but
Why...
September 14, 2005 at 2:53 pm
In case you can store some profiles (either permanent or temporary) to store all the requirements
profile_qualifications:
profileid
qualificationid
required /*required might be weighted like 0 or -1 (@MyconstantforRequired
) for required, >(=)0 for non-required*/
/*Variables :
September 14, 2005 at 12:08 pm
I wouldn't rely much on the order of triggers. Rather have it in one.
You have first, last, and between (with no order)
September 14, 2005 at 11:23 am
not as versatile
select MustHave.candidateid,NiceToHave.Extras
from
(
select candidateid
from dbo.Candidate_Qualifications Candidate_Qualifications
where qualificationid = A
OR qualificationid=B
OR qualificationid=C
group by candidateid
having count(QualificationID)=3 /*COUNT 3 = have A,B,C*/
) AS MustHave
left join /*All of musthave, Nice to have if...
September 13, 2005 at 2:40 pm
I would save your changes in the local dataset, and modify the insert/update/delete commands of the dataset to use your stored procedures to insert/update/delete.
September 13, 2005 at 2:21 pm
Database master: IO is frozen for snapshot
= start of taking a snapshot
Database master: IO is thawed
= taking of snapshot finished. (?)
Is there replication on the server?
September 7, 2005 at 2:49 pm
Every time I had this error it was related to one of the tables not having a primary key.
September 6, 2005 at 10:48 am
The xeons have the hyperthreading-feature. Each processor presents itself as a dual-processor to the operating system.
Mostly an on/off switch is provided in the bios.
An article about hyperthreading:
http://www.digit-life.com/articles/pentium4xeonhyperthreading/
September 5, 2005 at 2:49 pm
I'll search for new drivers, biosses.
Thanks for suggestions.
September 5, 2005 at 1:06 pm
Viewing 15 posts - 1,996 through 2,010 (of 2,043 total)