Viewing 15 posts - 6,496 through 6,510 (of 7,472 total)
here's the test result :
Msg 8618, Level 16, State 2, Line 1
The query processor could not produce a query plan because a worktable is required, and its minimum row...
September 20, 2005 at 12:50 am
there ara SAN systems that have an archiving option, meaning datafiles not used for x time migrate to tape until called for.
I've only seen the concept-picture, but have never seen...
September 14, 2005 at 1:29 pm
- what kind of transaction are you using ?
- what kind of connection isolation level are you using ?
- what kind of lock-mechanism is active when the sp is being...
September 14, 2005 at 1:22 pm
just a sidenote :
keep in mind ssc is running out of memory because we are !
September 14, 2005 at 1:42 am
so you could get this :
create proc spc_xxx
as
begin
set nocount on
-- first table is CUSTOMER table that have 2 field (id_cust,id_support)
-- second table is SUPPORT table that have 3 field (id_support,...
September 13, 2005 at 5:14 am
is this what you are looking for ?
update Customer
set id_support = S.id_support
from Customer C
inner join (
Select id_cust, count(*) as counter
from rc_sortir_intag
group by id_cust) CC
on C.id_cust = CC.id_cust
inner join Support...
September 13, 2005 at 5:10 am
May I emphasize BP id_columns should not be used but for PK/FK perposes, so a count(*) for id_columns should only determine the number of usage, but nothing else ?!
September 13, 2005 at 1:40 am
with int datatype you don't have decimals
you could do
select convert(decimal(11,3),yourIntCol) / 100 as youDecCol
(adjust...
September 13, 2005 at 1:03 am
There has been a bug in sql7 where this osql using sa was a workaround.
now I'm out of ammo
September 13, 2005 at 12:00 am
May seem a bit strange, but what happens if you make a sqlagent-job and have it execute the sp/dbcc using OSQL with sa-login ?
e.g.
osql -Usa -Pdontleaveitblank -S yourserver -d master -Q...
September 12, 2005 at 12:19 am
Using EM you can't view all jobs, unless you are sa
Maybe this proc can help out using QA :
Use master
go
if exists (select * from dbo.sysobjects...
September 9, 2005 at 12:39 am
differential backups are not incremental, they each contain all differences since the last full backup.
If you want to use incremental backups, activate full (or bulk logged) recovery model and use...
September 9, 2005 at 12:32 am
Using this sqlagent job, it works fine over here. This job is scheduled on all our servers one a week.
As you can see I encountered a problem using the...
September 9, 2005 at 12:17 am
September 5, 2005 at 7:58 am
Viewing 15 posts - 6,496 through 6,510 (of 7,472 total)