Viewing 15 posts - 5,941 through 5,955 (of 7,505 total)
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
It depends on how long the transaction from your insert will take.
If it is short, I think you'll not notice the blocking when a user that is in your list...
January 31, 2007 at 6:11 am
- a job can only run once at a time !
- if a job runs, you cannot start it again until in has ended.
- So what you see is normal...
January 30, 2007 at 12:17 pm
you can write the job-step-output to a txt-file (edit jobstep-properties \ advanced). Maybe that already gives you the info you need.
January 30, 2007 at 12:13 pm
- You should run sqlserver using an "own" sqlserver-domain account that serves only that sqlserver (or a group of sqlservers if you want to)
- Be carefull when changing the serviceaccount...
January 30, 2007 at 12:07 pm
I guess not, because the .commandtimeout is available with the sqlclient.sqlcommand.
I would be estonished if that wasn't integrated in DAAB.
They've found it for the connection, so they 'll be...
January 25, 2007 at 8:10 am
With ado.net there is a sqlcommand.CommandTimeout that you can set.
also check out
http://msdn2.microsoft.com/en-us/library/aa479373.aspx#spoil_topic4
http://msdn2.microsoft.com/en-us/library/aa479373.aspx#spoil_topic5
January 25, 2007 at 7:22 am
Indeed, it's the dba's daily job to do miracles and salvations ![]()
Dev-teams are first of all afraid to admit flaws, and then to...
January 25, 2007 at 2:27 am
Good article.
Most articles only handle "local" SSB. That's the easy part !
There are many pitfalls when going remote.
I'll poste al litle script containing the dmv's,.. for SSB-problemsolving.
January 25, 2007 at 1:45 am
The way Santosh wrote it , you'd get two resultsets.
If you want to join both queries to get one resultset , just use :
SelectStatement = String.Format("
SELECT ....
FROM shows AS...
January 25, 2007 at 1:38 am
if you use a command-object, it has its own timeout (default at 30seconds)
January 24, 2007 at 1:12 pm
can you also post the query ?
January 23, 2007 at 7:53 am
Viewing 15 posts - 5,941 through 5,955 (of 7,505 total)