Unix Technical Forum

SEO

vBulletin Search Engine Optimization


Go Back   Unix Technical Forum > Database Server Software > DB2

Register FAQ Members List Calendar Search Today's Posts Mark Forums Read
  #1 (permalink)  
Old 02-27-2008, 06:04 AM
Bob Stearns
 
Posts: n/a
Default Inapplicable message? DB2 UDB v8.1.9 Linux

I am receiving what appears to me to be an inapplicable message from the
query below. The message is also below. I see no VALUES clause nor a set
operator (INTERSECT, DIFFERENCE, UNION) in the query. What am I missing?


SQL0415N The data types of corresponding columns are not compatible in a
fullselect that includes a set operator or in the multiple rows of a
VALUES clause of an INSERT or fullselect. SQLSTATE=42825


SELECT t7.BHID as cow_bhid,
t8.BHID as calf_bhid,
t2.herd_id as Cow_ID,
t7L.namex as Location,
case
when t8.sire_bhid IS NOT NULL
THEN t8.sire_bhid
when t1.BRED_TYPE='A'
then t3s.herd_id
when t1.BRED_TYPE='O'
then t4s.herd_id
when t1.BRED_TYPE='P'
then t5s.herd_id
when t1.BRED_TYPE='I'
then t6s.herd_id
when t1.BRED_TYPE='U'
then 'Unknown'
end as Sire_ID,
case
when t1.BRED_TYPE='I'
then t6d.herd_id
else t8.dam_id
end as Donor_ID,
case
when t1.BRED_TYPE='I'
then t6i.herd_id
else t8.calf_id
end as Embryo_ID,
t6i.bhid as Emb_BHID,
case t1.BRED_TYPE
when 'A'
then 'AI'
when 'O'
then 'Observed'
when 'P'
then 'Pasture'
when 'I'
then 'Embryo'
when 'U'
then 'Unknown'
else 'None'
end as Bred_Via,
char(t1.DATEX, USA) as Preg_Check_Date,
t1.CALLED_DAYS,
t1.BRED_DATE,
char(t1.datex - t1.called_days days, USA) as called_date_bred,
COALESCE(t8.sex,t1.called_sex) as sex,
char(due_date, USA) as due_date,
rowx
FROM IS3.Animals t7
left outer join table ( SELECT t8a.*,
t8b.herd_id as calf_id,
t8c.herd_id as sire_id,
case
when t8a.recip_bhid<>0
then t8d.herd_id
end as donor_id
FROM is3.animals t8a
left outer join is3.animals_priv t8b
on t8b.bhid=t8a.bhid
AND t8b.herd_owner_id=1
join is3.animals_priv t8c
on t8c.bhid=t8a.sire_bhid
AND t8c.herd_owner_id=1
join is3.animals_priv t8d
on t8d.bhid=t8a.dam_bhid
AND t8d.herd_owner_id=1
join is3.weaning t8e
on t8e.bhid=t8a.bhid
WHERE ( t8a.recip_bhid=t7.bhid
OR ( t8a.dam_bhid=t7.bhid
AND t8a.recip_bhid=0))
AND t8a.birth_date>current_date-300 days
AND t8e.weigh_date is null
)
t8
on 0=0
left outer join table ( SELECT t0.*,
CASE t0.bred_type
when 'I'
then t0.BRED_DATE + 275 days
when 'P'
then
case
when called_days is null
then t0.BRED_DATE + 283 days
else t0.datex - called_days days +
283 days
end
else t0.BRED_DATE + 283 days
END
AS due_date,
ROW_NUMBER() OVER( PARTITION BY t0.bhid
ORDER BY
CASE t0.bred_type
when 'I'
then t0.BRED_DATE + 275 days
when 'P'
then
case
when called_days is null
then t0.BRED_DATE + 283 days
else t0.datex - called_days days
+ 283 days
end
else t0.BRED_DATE + 283 days
END DESC NULLS LAST ) AS rowx
FROM is3.PREG_CHK as t0
WHERE t0.bhid=t7.bhid
AND t8.bhid IS NULL
)
t1
on T1.BHID=t7.BHID
join IS3.locations t7L
on T7.location=t7L.loc_id
left outer join IS3.Animals_priv t2
on T2.BHID=T7.BHID
AND t2.herd_owner_id=1
left outer join IS3.service_AI t3
on T1.BHID=T3.cow_BHID
AND t1.BRED_DATE = t3.datex
left outer join IS3.Animals_priv t3S
on T3.Bull_BHID=T3S.BHID
AND t3S.HERD_OWNER_ID = 1
left outer join IS3.service_Obs t4
on T1.BHID=T4.cow_BHID
AND t1.BRED_DATE = t4.datex
left outer join IS3.Animals_priv t4S
on T4.Bull_BHID=T4S.BHID
AND t4S.HERD_OWNER_ID = 1
left outer join IS3.service_Pasture t5
on T1.BHID=T5.cow_BHID
AND t1.BRED_DATE = t5.in_date
left outer join IS3.Animals_priv t5S
on T5.Bull_BHID=T5S.BHID
AND t5S.HERD_OWNER_ID = 1
LEFT OUTER JOIN TABLE( SELECT t61.bhid,
t62.SIRE_BHID,
t62.DAM_BHID,
t62.recip_bhid
FROM is3.et_implants t61
join is3.animals t62
on t61.bhid=t62.bhid
WHERE t62.recip_bhid=t1.bhid
AND t61.datex=t1.bred_date
)
t6e
on t6e.recip_bhid=t1.bhid
left outer join IS3.Animals_priv t6I
on T6e.BHID=T6I.BHID
AND t6I.HERD_OWNER_ID = 1
left outer join IS3.Animals_priv t6S
on T6e.Sire_BHID=T6S.BHID
AND t6S.HERD_OWNER_ID = 1
left outer join IS3.Animals_priv t6D
on T6e.Dam_BHID=T6D.BHID
AND t6D.HERD_OWNER_ID = 1
WHERE t7.bhid in( SELECT bhid
FROM is3.ANIMAL_SETS
WHERE SET_NAME='Junk_Cows'
AND USERID='jhough')
AND (rowx=1
OR rowx IS NULL)
ORDER BY Cow_ID
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old 02-27-2008, 06:04 AM
Serge Rielau
 
Posts: n/a
Default Re: Inapplicable message? DB2 UDB v8.1.9 Linux

Bob Stearns wrote:
> I am receiving what appears to me to be an inapplicable message from the
> query below. The message is also below. I see no VALUES clause nor a set
> operator (INTERSECT, DIFFERENCE, UNION) in the query. What am I missing?
>
>
> SQL0415N The data types of corresponding columns are not compatible in a
> fullselect that includes a set operator or in the multiple rows of a
> VALUES clause of an INSERT or fullselect. SQLSTATE=42825
>
>
> SELECT t7.BHID as cow_bhid,
> t8.BHID as calf_bhid,
> t2.herd_id as Cow_ID,
> t7L.namex as Location,
> case
> when t8.sire_bhid IS NOT NULL
> THEN t8.sire_bhid
> when t1.BRED_TYPE='A'
> then t3s.herd_id
> when t1.BRED_TYPE='O'
> then t4s.herd_id
> when t1.BRED_TYPE='P'
> then t5s.herd_id
> when t1.BRED_TYPE='I'
> then t6s.herd_id
> when t1.BRED_TYPE='U'
> then 'Unknown'
> end as Sire_ID,
> case
> when t1.BRED_TYPE='I'
> then t6d.herd_id
> else t8.dam_id
> end as Donor_ID,
> case
> when t1.BRED_TYPE='I'
> then t6i.herd_id
> else t8.calf_id
> end as Embryo_ID,
> t6i.bhid as Emb_BHID,
> case t1.BRED_TYPE
> when 'A'
> then 'AI'
> when 'O'
> then 'Observed'
> when 'P'
> then 'Pasture'
> when 'I'
> then 'Embryo'
> when 'U'
> then 'Unknown'
> else 'None'
> end as Bred_Via,
> char(t1.DATEX, USA) as Preg_Check_Date,
> t1.CALLED_DAYS,
> t1.BRED_DATE,
> char(t1.datex - t1.called_days days, USA) as called_date_bred,
> COALESCE(t8.sex,t1.called_sex) as sex,
> char(due_date, USA) as due_date,
> rowx
> FROM IS3.Animals t7
> left outer join table ( SELECT t8a.*,
> t8b.herd_id as calf_id,
> t8c.herd_id as sire_id,
> case
> when t8a.recip_bhid<>0
> then t8d.herd_id
> end as donor_id
> FROM is3.animals t8a
> left outer join is3.animals_priv t8b
> on t8b.bhid=t8a.bhid
> AND t8b.herd_owner_id=1
> join is3.animals_priv t8c
> on t8c.bhid=t8a.sire_bhid
> AND t8c.herd_owner_id=1
> join is3.animals_priv t8d
> on t8d.bhid=t8a.dam_bhid
> AND t8d.herd_owner_id=1
> join is3.weaning t8e
> on t8e.bhid=t8a.bhid
> WHERE ( t8a.recip_bhid=t7.bhid
> OR ( t8a.dam_bhid=t7.bhid
> AND t8a.recip_bhid=0))
> AND t8a.birth_date>current_date-300
> days
> AND t8e.weigh_date is null
> )
> t8
> on 0=0
> left outer join table ( SELECT t0.*,
> CASE t0.bred_type
> when 'I'
> then t0.BRED_DATE + 275 days
> when 'P'
> then
> case
> when called_days is null
> then t0.BRED_DATE + 283 days
> else t0.datex - called_days
> days +
> 283 days
> end
> else t0.BRED_DATE + 283 days
> END
> AS due_date,
> ROW_NUMBER() OVER( PARTITION BY t0.bhid
> ORDER BY
> CASE t0.bred_type
> when 'I'
> then t0.BRED_DATE + 275 days
> when 'P'
> then
> case
> when called_days is null
> then t0.BRED_DATE + 283
> days
> else t0.datex -
> called_days days
> + 283 days
> end
> else t0.BRED_DATE + 283 days
> END DESC NULLS LAST ) AS rowx
> FROM is3.PREG_CHK as t0
> WHERE t0.bhid=t7.bhid
> AND t8.bhid IS NULL
> )
> t1
> on T1.BHID=t7.BHID
> join IS3.locations t7L
> on T7.location=t7L.loc_id
> left outer join IS3.Animals_priv t2
> on T2.BHID=T7.BHID
> AND t2.herd_owner_id=1
> left outer join IS3.service_AI t3
> on T1.BHID=T3.cow_BHID
> AND t1.BRED_DATE = t3.datex
> left outer join IS3.Animals_priv t3S
> on T3.Bull_BHID=T3S.BHID
> AND t3S.HERD_OWNER_ID = 1
> left outer join IS3.service_Obs t4
> on T1.BHID=T4.cow_BHID
> AND t1.BRED_DATE = t4.datex
> left outer join IS3.Animals_priv t4S
> on T4.Bull_BHID=T4S.BHID
> AND t4S.HERD_OWNER_ID = 1
> left outer join IS3.service_Pasture t5
> on T1.BHID=T5.cow_BHID
> AND t1.BRED_DATE = t5.in_date
> left outer join IS3.Animals_priv t5S
> on T5.Bull_BHID=T5S.BHID
> AND t5S.HERD_OWNER_ID = 1
> LEFT OUTER JOIN TABLE( SELECT t61.bhid,
> t62.SIRE_BHID,
> t62.DAM_BHID,
> t62.recip_bhid
> FROM is3.et_implants t61
> join is3.animals t62
> on t61.bhid=t62.bhid
> WHERE t62.recip_bhid=t1.bhid
> AND t61.datex=t1.bred_date
> )
> t6e
> on t6e.recip_bhid=t1.bhid
> left outer join IS3.Animals_priv t6I
> on T6e.BHID=T6I.BHID
> AND t6I.HERD_OWNER_ID = 1
> left outer join IS3.Animals_priv t6S
> on T6e.Sire_BHID=T6S.BHID
> AND t6S.HERD_OWNER_ID = 1
> left outer join IS3.Animals_priv t6D
> on T6e.Dam_BHID=T6D.BHID
> AND t6D.HERD_OWNER_ID = 1
> WHERE t7.bhid in( SELECT bhid
> FROM is3.ANIMAL_SETS
> WHERE SET_NAME='Junk_Cows'
> AND USERID='jhough')
> AND (rowx=1
> OR rowx IS NULL)
> ORDER BY Cow_ID

Divide and conquer.....

--
Serge Rielau
DB2 Solutions Development
IBM Toronto Lab
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 02-27-2008, 06:04 AM
Knut Stolze
 
Posts: n/a
Default Re: Inapplicable message? DB2 UDB v8.1.9 Linux

Serge Rielau wrote:

> Bob Stearns wrote:
>> I am receiving what appears to me to be an inapplicable message from the
>> query below. The message is also below. I see no VALUES clause nor a set
>> operator (INTERSECT, DIFFERENCE, UNION) in the query. What am I missing?
>>
>>
>> SQL0415N The data types of corresponding columns are not compatible in a
>> fullselect that includes a set operator or in the multiple rows of a
>> VALUES clause of an INSERT or fullselect. SQLSTATE=42825
>>
>>
>> SELECT t7.BHID as cow_bhid,
>> t8.BHID as calf_bhid,
>> t2.herd_id as Cow_ID,
>> t7L.namex as Location,
>> case
>> when t8.sire_bhid IS NOT NULL
>> THEN t8.sire_bhid
>> when t1.BRED_TYPE='A'
>> then t3s.herd_id
>> when t1.BRED_TYPE='O'
>> then t4s.herd_id
>> when t1.BRED_TYPE='P'
>> then t5s.herd_id
>> when t1.BRED_TYPE='I'
>> then t6s.herd_id
>> when t1.BRED_TYPE='U'
>> then 'Unknown'
>> end as Sire_ID,

[...]

> Divide and conquer.....


Definitively!

I would guess it could be in one of the CASE expressions.

Oh, and a suggestion to the OP. Expressions like this:

case
when called_days is null
then t0.BRED_DATE + 283 days
else t0.datex - called_days days + 283 days
end

can be rephrased to:

COALESCE(t0.datex - called_days days + 283 days, t0.BRED_DATE + 283 days)

Note that the datetime expression involving "called_days" will evaluate to
NULL if called_days is NULL.

--
Knut Stolze
DB2 Information Integration Development
IBM Germany
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old 02-27-2008, 06:04 AM
Tonkuma
 
Posts: n/a
Default Re: Inapplicable message? DB2 UDB v8.1.9 Linux

I guess some of t8.sire_bhid, t3s.herd_id, etc. in the following
expression(The last row is " then 'Unknown' ") are not CHARACTER type.

case
when t8.sire_bhid IS NOT NULL
THEN t8.sire_bhid
when t1.BRED_TYPE='A'
then t3s.herd_id
when t1.BRED_TYPE='O'
then t4s.herd_id
when t1.BRED_TYPE='P'
then t5s.herd_id
when t1.BRED_TYPE='I'
then t6s.herd_id
when t1.BRED_TYPE='U'
then 'Unknown'
end as Sire_ID

One reason I guessed so, is that you treat sometime xxxx_bhid or
xxxx_id as number.
For example:
......
t8a.recip_bhid<>0
......
t8a.recip_bhid=0
......
t8d.herd_owner_id=1

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5 (permalink)  
Old 02-27-2008, 06:05 AM
Tonkuma
 
Posts: n/a
Default Re: Inapplicable message? DB2 UDB v8.1.9 Linux

Or simply change 'Unknown' to number or NULL.

case
when t8.sire_bhid IS NOT NULL
THEN t8.sire_bhid
when t1.BRED_TYPE='A'
then t3s.herd_id
when t1.BRED_TYPE='O'
then t4s.herd_id
when t1.BRED_TYPE='P'
then t5s.herd_id
when t1.BRED_TYPE='I'
then t6s.herd_id
when t1.BRED_TYPE='U'
then NULL
end as Sire_ID

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #6 (permalink)  
Old 02-27-2008, 06:05 AM
Tonkuma
 
Posts: n/a
Default Re: Inapplicable message? DB2 UDB v8.1.9 Linux

Or change 'Unknown' to number or NULL.

case
when t8.sire_bhid IS NOT NULL
THEN t8.sire_bhid
when t1.BRED_TYPE='A'
then t3s.herd_id
when t1.BRED_TYPE='O'
then t4s.herd_id
when t1.BRED_TYPE='P'
then t5s.herd_id
when t1.BRED_TYPE='I'
then t6s.herd_id
when t1.BRED_TYPE='U'
then NULL
end as Sire_ID

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #7 (permalink)  
Old 02-27-2008, 06:06 AM
Bob Stearns
 
Posts: n/a
Default Re: Inapplicable message? DB2 UDB v8.1.9 Linux

Knut Stolze wrote:
> Serge Rielau wrote:
>
>
>>Bob Stearns wrote:
>>
>>>I am receiving what appears to me to be an inapplicable message from the
>>>query below. The message is also below. I see no VALUES clause nor a set
>>>operator (INTERSECT, DIFFERENCE, UNION) in the query. What am I missing?
>>>
>>>
>>>SQL0415N The data types of corresponding columns are not compatible in a
>>>fullselect that includes a set operator or in the multiple rows of a
>>>VALUES clause of an INSERT or fullselect. SQLSTATE=42825
>>>
>>>
>>>SELECT t7.BHID as cow_bhid,
>>> t8.BHID as calf_bhid,
>>> t2.herd_id as Cow_ID,
>>> t7L.namex as Location,
>>> case
>>> when t8.sire_bhid IS NOT NULL
>>> THEN t8.sire_bhid
>>> when t1.BRED_TYPE='A'
>>> then t3s.herd_id
>>> when t1.BRED_TYPE='O'
>>> then t4s.herd_id
>>> when t1.BRED_TYPE='P'
>>> then t5s.herd_id
>>> when t1.BRED_TYPE='I'
>>> then t6s.herd_id
>>> when t1.BRED_TYPE='U'
>>> then 'Unknown'
>>> end as Sire_ID,

>
> [...]
>
>
>>Divide and conquer.....

>
>
> Definitively!
>
> I would guess it could be in one of the CASE expressions.
>
> Oh, and a suggestion to the OP. Expressions like this:
>
> case
> when called_days is null
> then t0.BRED_DATE + 283 days
> else t0.datex - called_days days + 283 days
> end
>
> can be rephrased to:
>
> COALESCE(t0.datex - called_days days + 283 days, t0.BRED_DATE + 283 days)
>
> Note that the datetime expression involving "called_days" will evaluate to
> NULL if called_days is NULL.
>

Thanks for the suggestion. It was a CASE statement with mismatched THEN
results.

My original objection still stands though: the error neither involved
VALUES nor set operations. The message gives no clue where or what the
problem is.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #8 (permalink)  
Old 02-27-2008, 06:06 AM
Serge Rielau
 
Posts: n/a
Default Re: Inapplicable message? DB2 UDB v8.1.9 Linux

Bob Stearns wrote:
> Knut Stolze wrote:
>
>> Serge Rielau wrote:
>>
>>
>>> Bob Stearns wrote:
>>>
>>>> I am receiving what appears to me to be an inapplicable message from
>>>> the
>>>> query below. The message is also below. I see no VALUES clause nor a
>>>> set
>>>> operator (INTERSECT, DIFFERENCE, UNION) in the query. What am I
>>>> missing?
>>>>
>>>>
>>>> SQL0415N The data types of corresponding columns are not compatible
>>>> in a
>>>> fullselect that includes a set operator or in the multiple rows of a
>>>> VALUES clause of an INSERT or fullselect. SQLSTATE=42825
>>>>
>>>>
>>>> SELECT t7.BHID as cow_bhid,
>>>> t8.BHID as calf_bhid,
>>>> t2.herd_id as Cow_ID,
>>>> t7L.namex as Location,
>>>> case
>>>> when t8.sire_bhid IS NOT NULL
>>>> THEN t8.sire_bhid
>>>> when t1.BRED_TYPE='A'
>>>> then t3s.herd_id
>>>> when t1.BRED_TYPE='O'
>>>> then t4s.herd_id
>>>> when t1.BRED_TYPE='P'
>>>> then t5s.herd_id
>>>> when t1.BRED_TYPE='I'
>>>> then t6s.herd_id
>>>> when t1.BRED_TYPE='U'
>>>> then 'Unknown'
>>>> end as Sire_ID,

>>
>>
>> [...]
>>
>>
>>> Divide and conquer.....

>>
>>
>>
>> Definitively!
>>
>> I would guess it could be in one of the CASE expressions.
>>
>> Oh, and a suggestion to the OP. Expressions like this:
>>
>> case
>> when called_days is null
>> then t0.BRED_DATE + 283 days
>> else t0.datex - called_days days + 283 days
>> end
>>
>> can be rephrased to:
>>
>> COALESCE(t0.datex - called_days days + 283 days, t0.BRED_DATE + 283 days)
>>
>> Note that the datetime expression involving "called_days" will
>> evaluate to
>> NULL if called_days is NULL.
>>

> Thanks for the suggestion. It was a CASE statement with mismatched THEN
> results.
>
> My original objection still stands though: the error neither involved
> VALUES nor set operations. The message gives no clue where or what the
> problem is.

You should have gotten this:
db2 => values case when 1=1 then 1 when 1=1 then 'b' end;
SQL0581N The data types of the result-expressions of a CASE expression
are not compatible. SQLSTATE=42804

If you would be so kind to send me a repro by email.
I'll take a peek and see to it that it gets fixed.

Cheers
Serge

--
Serge Rielau
DB2 Solutions Development
IBM Toronto Lab
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #9 (permalink)  
Old 02-27-2008, 06:06 AM
Knut Stolze
 
Posts: n/a
Default Re: Inapplicable message? DB2 UDB v8.1.9 Linux

Serge Rielau wrote:

> You should have gotten this:
> db2 => values case when 1=1 then 1 when 1=1 then 'b' end;
> SQL0581N The data types of the result-expressions of a CASE expression
> are not compatible. SQLSTATE=42804
>
> If you would be so kind to send me a repro by email.
> I'll take a peek and see to it that it gets fixed.


Serge, does DB2 do (some) rewrite before it verifies the data types? In
that case I could understand why the error message of the OP was returned.
(Which should not be an excuse for the message not being helpful.)

--
Knut Stolze
DB2 Information Integration Development
IBM Germany
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #10 (permalink)  
Old 02-27-2008, 06:07 AM
Serge Rielau
 
Posts: n/a
Default Re: Inapplicable message? DB2 UDB v8.1.9 Linux

Knut Stolze wrote:
> Serge Rielau wrote:
>
>
>>You should have gotten this:
>>db2 => values case when 1=1 then 1 when 1=1 then 'b' end;
>>SQL0581N The data types of the result-expressions of a CASE expression
>>are not compatible. SQLSTATE=42804
>>
>>If you would be so kind to send me a repro by email.
>>I'll take a peek and see to it that it gets fixed.

>
>
> Serge, does DB2 do (some) rewrite before it verifies the data types? In
> that case I could understand why the error message of the OP was returned.
> (Which should not be an excuse for the message not being helpful.)
>

No, superficially type mismatches in CASE _expression_ should be caught
during parsing, that's why I want a repro.

Cheers
Serge
--
Serge Rielau
DB2 Solutions Development
IBM Toronto Lab
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump


All times are GMT. The time now is 02:56 PM.


Powered by vBulletin® Version 3.6.5
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.2.0
UnixAdminTalk.com

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426