Viewing 15 posts - 1 through 15 (of 22 total)
Can you do a test changing the isolation level ?
I would change it to read uncommitted , in your case is read committed.
Kr,
R
October 23, 2008 at 3:15 am
There are some examples here http://www.sqlusa.com/bestpractices2005/collatedatabasedefault/ ..
Cheers,
R
August 8, 2008 at 7:46 am
.. and don't forget another join with sys.dm_exec_sessions on session_id as well ..
August 7, 2008 at 4:41 am
Just make a join with sys.sysprocesses on spid / session_id, 🙂
Cheers,
R
August 7, 2008 at 4:39 am
Division by zero is not handled here 🙂
August 6, 2008 at 5:06 am
You have it on 2008 as well .
August 6, 2008 at 3:59 am
You can find it in 2008 as well.
August 6, 2008 at 1:38 am
Hi there ,
you can try something like this :
select
d.name,
percent_complete, dateadd(second,estimated_completion_time/1000, getdate()), Getdate() as now,
datediff(minute, start_time, getdate()) as running, estimated_completion_time/1000/60 as togo,
start_time, command
from...
August 5, 2008 at 5:42 am
Hi there ...
What if you have a few hundred stored procedures in your db ? Do you change all of them ? I would rather take a look into...
August 4, 2008 at 3:47 am
Well , in this case it sounds like new tables are needed, lots of work 🙂 .
July 18, 2008 at 6:15 am
and here is another example:
create table bubu (fcol1 int)
create table tutu (fcol1 int)
create table #tmptables (fid int identity (1,1), tblname varchar(50))
insert into #tmptables (tblname)
select 'bubu'
union
select 'tutu'
declare @cnt int,@sqlst...
July 18, 2008 at 3:38 am
alter table bubu
add fid int identity (1,1) primary key not null
kr,
R
July 18, 2008 at 3:28 am
Then change the datatype from datetime to nvarchar for example ..
July 4, 2008 at 2:50 am
alter table myta[font="Tahoma"][/font]ble alter column mycolumn int not null;
cheers,
R
February 28, 2008 at 8:55 am
Viewing 15 posts - 1 through 15 (of 22 total)