Viewing 15 posts - 5,926 through 5,940 (of 7,501 total)
can you add tablealiasses ? That eases reading and interpreting the query ?
e.g select t1.Uname
from mytable t1
, myview x2
where t1.idno = x2.colxyz
and t1.Ubirthdate = '2007-01-01'
or
select t1.Uname
...
February 8, 2007 at 1:30 am
I totaly agree ! ![]()
And sometimes "time" also plays a roll in a situation.
February 7, 2007 at 7:53 am
I'm sorry to mention it can be handy to learn some basics regarding Structured Query Language. Invest some time reading about the "select" statement in books online.
February 7, 2007 at 7:26 am
- Actualy the only way of creating dbo objects by default is making that user databaseowner !! sp_changedbowner @loginame = 'PRG' ,@map = 'true'
groupmembership is not enough ! (you'll have to...
February 7, 2007 at 12:33 am
Thanks for posting the workaround.
It also works with SQL2005 Std SP1 ![]()
February 6, 2007 at 4:45 am
be very carefull if you want to disable triggers and/ or constraints because that goes for _every_ user of the database for the time you've desabled them !!
basicaly meaning, if...
February 2, 2007 at 7:38 am
If you are still considering a cluster implementation, also consider to implement SQL2005 !!! because it has enhancements like mirrored databases which is also a high availability solution with failover possibillities,...
February 2, 2007 at 7:33 am
just to add to Michael Earl's reply :
The guideline for any RDBMS is that by default one should provide exact foreign-key...
February 2, 2007 at 7:20 am
the downside of the proposed proc is that it will start the job, even if it has been disabled !!!
Maybe it's better to implement an alert to start the job,...
February 2, 2007 at 4:07 am
Do you have an index for DateInserted and/or ErrorID ?
otherwize i guess your deletequery performs a tablescan ! this way (dead)locking may occur more frequent !
February 1, 2007 at 8:22 am
- If you have no baseline or reference, how would you define "performant" ?
Start with defining your expectations (or references to the "old" server ) regarding the time your planned...
February 1, 2007 at 8:18 am
1. what is the default lock level of sql server? row level.
2. will sql server auto escalate the lock level in some case? YES
is there any chance to a table...
January 31, 2007 at 7:54 am
update : the dev-team did put on the wrong track .... _not_ mentioning some tiny little bits ...
I went back to them and talked a bit regarding their process.
Now they...
January 31, 2007 at 7:46 am
If you have a clustered index on you account-table and that index is composed of UserId, AccountId , then pagesplits may occur when another account is created.
If you clustering index...
January 31, 2007 at 6:59 am
select
S.*
from student S
INNER join stcourse C
ON S.sid
January 31, 2007 at 6:14 am
Viewing 15 posts - 5,926 through 5,940 (of 7,501 total)