Viewing 15 posts - 5,941 through 5,955 (of 7,501 total)
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
- start sql-profiler to capture a sample load and examine it for table and or index scans.
- do you have db-maintenance-jobs in place ? to reduce fragmentation
January 23, 2007 at 7:14 am
- for the data-part the is no difference for 32 or 64-bit OS / SQLServer
- however if you are using the CLR, I guess it would be nice to avoid...
January 23, 2007 at 3:56 am
- I wouldn't advise a trigger for this purpose ! (start job) because if the start job fails, your transaction fails !
- I woudn't advise a trigger for this purpose...
January 23, 2007 at 3:46 am
this could be your test-script ....
print '00 Creating dbo.test';
go
create table dbo.Test (col1 int not null )
go
print '01 inserting rows into dbo.test';
go
insert into test values(1);
go
print '02 Selecting from unqualified table test';
go
select...
January 19, 2007 at 12:55 am
Viewing 15 posts - 5,941 through 5,955 (of 7,501 total)