Unix Technical Forum

SEO

vBulletin Search Engine Optimization


Go Back   Unix Technical Forum > Database Server Software > MySQL

Register FAQ Members List Calendar Search Today's Posts Mark Forums Read
  #1 (permalink)  
Old 02-28-2008, 10:02 AM
Jon Slaughter
 
Posts: n/a
Default ordered tables

Is there such a thing as ordered tables in sql or a simple way to emulate
it? i.e., the order in the table matters and one can insert into into the
table w.r.t to this order?

I suppose I can have a column that sorta simulates the order but the problem
is that I don't see how I can simply insert a new row without having to
modify all others. If I could simply use the inherent order of the table
then it would be much easier but then I think inserting will be very hard. I
suppose I could have a unique ID for each one and I think that will work but
not completely sure.

Not sure if its possible to insert a row inbetween rows? But if I could and
I could be sure that SQL would not modify the order then I think I could do
it easily... else I end up having to have a field that contains relative
information and I'd have to check every single row for it which is not what
I'm going to do.

Any ideas?

Thanks,
Jon


Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old 02-28-2008, 10:02 AM
Jerry Stuckle
 
Posts: n/a
Default Re: ordered tables

Jon Slaughter wrote:
> Is there such a thing as ordered tables in sql or a simple way to emulate
> it? i.e., the order in the table matters and one can insert into into the
> table w.r.t to this order?
>
> I suppose I can have a column that sorta simulates the order but the problem
> is that I don't see how I can simply insert a new row without having to
> modify all others. If I could simply use the inherent order of the table
> then it would be much easier but then I think inserting will be very hard. I
> suppose I could have a unique ID for each one and I think that will work but
> not completely sure.
>
> Not sure if its possible to insert a row inbetween rows? But if I could and
> I could be sure that SQL would not modify the order then I think I could do
> it easily... else I end up having to have a field that contains relative
> information and I'd have to check every single row for it which is not what
> I'm going to do.
>
> Any ideas?
>
> Thanks,
> Jon
>
>


No. By definition, tables in RDB's are unordered. That's what the
ORDER clause in the SELECT statement is for.

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 02-28-2008, 10:02 AM
Jon Slaughter
 
Posts: n/a
Default Re: ordered tables


"Jerry Stuckle" <jstucklex@attglobal.net> wrote in message
news:W_2dnU0nQpb_I-zbnZ2dnUVZ_hGdnZ2d@comcast.com...
> Jon Slaughter wrote:
>> Is there such a thing as ordered tables in sql or a simple way to emulate
>> it? i.e., the order in the table matters and one can insert into into
>> the table w.r.t to this order?
>>
>> I suppose I can have a column that sorta simulates the order but the
>> problem is that I don't see how I can simply insert a new row without
>> having to modify all others. If I could simply use the inherent order of
>> the table then it would be much easier but then I think inserting will be
>> very hard. I suppose I could have a unique ID for each one and I think
>> that will work but not completely sure.
>>
>> Not sure if its possible to insert a row inbetween rows? But if I could
>> and I could be sure that SQL would not modify the order then I think I
>> could do it easily... else I end up having to have a field that contains
>> relative information and I'd have to check every single row for it which
>> is not what I'm going to do.
>>
>> Any ideas?
>>
>> Thanks,
>> Jon

>
> No. By definition, tables in RDB's are unordered. That's what the ORDER
> clause in the SELECT statement is for.
>


but how does it order it by? lexographical? I'm a little worried about how
I will set the id for each row so that when I order it it will give me the
heirarchy. I don't think I can find a sufficient solution using that unless
I can specify how it is to be ordered(without any non-portable sql code).

Jon


Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old 02-28-2008, 10:02 AM
Gordon Burditt
 
Posts: n/a
Default Re: ordered tables

>>> Is there such a thing as ordered tables in sql or a simple way to emulate
>>> it? i.e., the order in the table matters and one can insert into into
>>> the table w.r.t to this order?
>>>
>>> I suppose I can have a column that sorta simulates the order but the
>>> problem is that I don't see how I can simply insert a new row without
>>> having to modify all others. If I could simply use the inherent order of
>>> the table then it would be much easier but then I think inserting will be
>>> very hard. I suppose I could have a unique ID for each one and I think
>>> that will work but not completely sure.
>>>
>>> Not sure if its possible to insert a row inbetween rows? But if I could
>>> and I could be sure that SQL would not modify the order then I think I
>>> could do it easily... else I end up having to have a field that contains
>>> relative information and I'd have to check every single row for it which
>>> is not what I'm going to do.
>>>
>>> Any ideas?
>>>
>>> Thanks,
>>> Jon

>>
>> No. By definition, tables in RDB's are unordered. That's what the ORDER
>> clause in the SELECT statement is for.
>>

>
>but how does it order it by?


If your SQL specifies ORDER BY, that's how the output is ordered.
(in the case of ties, the ordering between equal-order rows is not
defined, but if you sort on a UNIQUE key, this won't be an issue).
If your SQL does not specify ORDER BY, no matter what order you get
for the output, you can't complain about it, since it's not wrong.

>lexographical?


Malevolent. The ordering will be such that it will seem to work fine
until you demo it to the boss or a customer. See Murphy's Law.

>I'm a little worried about how
>I will set the id for each row so that when I order it it will give me the
>heirarchy. I don't think I can find a sufficient solution using that unless
>I can specify how it is to be ordered(without any non-portable sql code).


You don't have to order by numbers. You can use a string. Each
item in a hierarchy can take the ID of its parent plus one additional
character (or a fixed number of additional characters), which
determines the ordering of its sub-topics. Suppose you have this
(partial) outline for a paper:

The Internet ()

I. Viruses and Malware (1)
A. Microsoft Windows (1A)
B. Internet Explorer (1B)
II. Criminals on the Internet (2)
A. Spammers (2A)
B. Predators (2B)
1. Cops pretending to be kids (2B1)
2. Chris Hansen (2B2)
3. Cops pretending to be FBI (2B3)
C. Fraudsters (2C)
1. Phishing attacks (2C1)
2. Phalse advertising (2C2)
III. Copyright Infringement (3)
A. Stolen Music (3A)
B. Stolen Movies (3B)
C. Stolen Software (3C)

If it's an unordered hierarchy, new items can be added at the end
under the parent, for example, "Stolen Pictures" probably gets (3D).
If you insist that it has to go between "Stolen Music" and "Stolen
Movies", it gets (3B), and you only have to renumber "Stolen Movies"
and "Stolen Software".

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5 (permalink)  
Old 02-28-2008, 10:02 AM
Jon Slaughter
 
Posts: n/a
Default Re: ordered tables


"Gordon Burditt" <gordonb.j31n4@burditt.org> wrote in message
news:1373oig9j8ovpe4@corp.supernews.com...
>>>> Is there such a thing as ordered tables in sql or a simple way to
>>>> emulate
>>>> it? i.e., the order in the table matters and one can insert into into
>>>> the table w.r.t to this order?
>>>>
>>>> I suppose I can have a column that sorta simulates the order but the
>>>> problem is that I don't see how I can simply insert a new row without
>>>> having to modify all others. If I could simply use the inherent order
>>>> of
>>>> the table then it would be much easier but then I think inserting will
>>>> be
>>>> very hard. I suppose I could have a unique ID for each one and I think
>>>> that will work but not completely sure.
>>>>
>>>> Not sure if its possible to insert a row inbetween rows? But if I could
>>>> and I could be sure that SQL would not modify the order then I think I
>>>> could do it easily... else I end up having to have a field that
>>>> contains
>>>> relative information and I'd have to check every single row for it
>>>> which
>>>> is not what I'm going to do.
>>>>
>>>> Any ideas?
>>>>
>>>> Thanks,
>>>> Jon
>>>
>>> No. By definition, tables in RDB's are unordered. That's what the
>>> ORDER
>>> clause in the SELECT statement is for.
>>>

>>
>>but how does it order it by?

>
> If your SQL specifies ORDER BY, that's how the output is ordered.
> (in the case of ties, the ordering between equal-order rows is not
> defined, but if you sort on a UNIQUE key, this won't be an issue).
> If your SQL does not specify ORDER BY, no matter what order you get
> for the output, you can't complain about it, since it's not wrong.
>
>>lexographical?

>
> Malevolent. The ordering will be such that it will seem to work fine
> until you demo it to the boss or a customer. See Murphy's Law.
>
>>I'm a little worried about how
>>I will set the id for each row so that when I order it it will give me the
>>heirarchy. I don't think I can find a sufficient solution using that
>>unless
>>I can specify how it is to be ordered(without any non-portable sql code).

>
> You don't have to order by numbers. You can use a string. Each
> item in a hierarchy can take the ID of its parent plus one additional
> character (or a fixed number of additional characters), which
> determines the ordering of its sub-topics. Suppose you have this
> (partial) outline for a paper:
>
> The Internet ()
>
> I. Viruses and Malware (1)
> A. Microsoft Windows (1A)
> B. Internet Explorer (1B)
> II. Criminals on the Internet (2)
> A. Spammers (2A)
> B. Predators (2B)
> 1. Cops pretending to be kids (2B1)
> 2. Chris Hansen (2B2)
> 3. Cops pretending to be FBI (2B3)
> C. Fraudsters (2C)
> 1. Phishing attacks (2C1)
> 2. Phalse advertising (2C2)
> III. Copyright Infringement (3)
> A. Stolen Music (3A)
> B. Stolen Movies (3B)
> C. Stolen Software (3C)
>
> If it's an unordered hierarchy, new items can be added at the end
> under the parent, for example, "Stolen Pictures" probably gets (3D).
> If you insist that it has to go between "Stolen Music" and "Stolen
> Movies", it gets (3B), and you only have to renumber "Stolen Movies"
> and "Stolen Software".
>


I don't see how its that efficient... if I have 100's of levels with 100's
of children then using just letters can start to waste space very quickly.

if I use each char as a full byte(0..255) then how do they get compared?


I think I can use a decimal if I encode it properly to represent the level
and it should work fine with the order by.

I can't see how using a full char(0..255) and concatinating them to form an
id will be processed by order correctly and just using letters(0..25 I
suppose since its probably not case sensitive) is about 10 times more
space(and because I need a larger number of "levels" it will quickly add up
to).

Jon


Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #6 (permalink)  
Old 02-28-2008, 10:02 AM
Jerry Stuckle
 
Posts: n/a
Default Re: ordered tables

Jon Slaughter wrote:
> "Gordon Burditt" <gordonb.j31n4@burditt.org> wrote in message
> news:1373oig9j8ovpe4@corp.supernews.com...
>>>>> Is there such a thing as ordered tables in sql or a simple way to
>>>>> emulate
>>>>> it? i.e., the order in the table matters and one can insert into into
>>>>> the table w.r.t to this order?
>>>>>
>>>>> I suppose I can have a column that sorta simulates the order but the
>>>>> problem is that I don't see how I can simply insert a new row without
>>>>> having to modify all others. If I could simply use the inherent order
>>>>> of
>>>>> the table then it would be much easier but then I think inserting will
>>>>> be
>>>>> very hard. I suppose I could have a unique ID for each one and I think
>>>>> that will work but not completely sure.
>>>>>
>>>>> Not sure if its possible to insert a row inbetween rows? But if I could
>>>>> and I could be sure that SQL would not modify the order then I think I
>>>>> could do it easily... else I end up having to have a field that
>>>>> contains
>>>>> relative information and I'd have to check every single row for it
>>>>> which
>>>>> is not what I'm going to do.
>>>>>
>>>>> Any ideas?
>>>>>
>>>>> Thanks,
>>>>> Jon
>>>> No. By definition, tables in RDB's are unordered. That's what the
>>>> ORDER
>>>> clause in the SELECT statement is for.
>>>>
>>> but how does it order it by?

>> If your SQL specifies ORDER BY, that's how the output is ordered.
>> (in the case of ties, the ordering between equal-order rows is not
>> defined, but if you sort on a UNIQUE key, this won't be an issue).
>> If your SQL does not specify ORDER BY, no matter what order you get
>> for the output, you can't complain about it, since it's not wrong.
>>
>>> lexographical?

>> Malevolent. The ordering will be such that it will seem to work fine
>> until you demo it to the boss or a customer. See Murphy's Law.
>>
>>> I'm a little worried about how
>>> I will set the id for each row so that when I order it it will give me the
>>> heirarchy. I don't think I can find a sufficient solution using that
>>> unless
>>> I can specify how it is to be ordered(without any non-portable sql code).

>> You don't have to order by numbers. You can use a string. Each
>> item in a hierarchy can take the ID of its parent plus one additional
>> character (or a fixed number of additional characters), which
>> determines the ordering of its sub-topics. Suppose you have this
>> (partial) outline for a paper:
>>
>> The Internet ()
>>
>> I. Viruses and Malware (1)
>> A. Microsoft Windows (1A)
>> B. Internet Explorer (1B)
>> II. Criminals on the Internet (2)
>> A. Spammers (2A)
>> B. Predators (2B)
>> 1. Cops pretending to be kids (2B1)
>> 2. Chris Hansen (2B2)
>> 3. Cops pretending to be FBI (2B3)
>> C. Fraudsters (2C)
>> 1. Phishing attacks (2C1)
>> 2. Phalse advertising (2C2)
>> III. Copyright Infringement (3)
>> A. Stolen Music (3A)
>> B. Stolen Movies (3B)
>> C. Stolen Software (3C)
>>
>> If it's an unordered hierarchy, new items can be added at the end
>> under the parent, for example, "Stolen Pictures" probably gets (3D).
>> If you insist that it has to go between "Stolen Music" and "Stolen
>> Movies", it gets (3B), and you only have to renumber "Stolen Movies"
>> and "Stolen Software".
>>

>
> I don't see how its that efficient... if I have 100's of levels with 100's
> of children then using just letters can start to waste space very quickly.
>
> if I use each char as a full byte(0..255) then how do they get compared?
>
>
> I think I can use a decimal if I encode it properly to represent the level
> and it should work fine with the order by.
>
> I can't see how using a full char(0..255) and concatinating them to form an
> id will be processed by order correctly and just using letters(0..25 I
> suppose since its probably not case sensitive) is about 10 times more
> space(and because I need a larger number of "levels" it will quickly add up
> to).
>
> Jon
>
>


The question arises - what exactly are you trying to do? 100's of
levels? 100's of children?

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #7 (permalink)  
Old 02-28-2008, 10:02 AM
Jon Slaughter
 
Posts: n/a
Default Re: ordered tables


"Jerry Stuckle" <jstucklex@attglobal.net> wrote in message
news:ePCdnbphcuUXnu_bnZ2dnUVZ_oPinZ2d@comcast.com. ..
> Jon Slaughter wrote:
>> "Gordon Burditt" <gordonb.j31n4@burditt.org> wrote in message
>> news:1373oig9j8ovpe4@corp.supernews.com...
>>>>>> Is there such a thing as ordered tables in sql or a simple way to
>>>>>> emulate
>>>>>> it? i.e., the order in the table matters and one can insert into
>>>>>> into
>>>>>> the table w.r.t to this order?
>>>>>>
>>>>>> I suppose I can have a column that sorta simulates the order but the
>>>>>> problem is that I don't see how I can simply insert a new row without
>>>>>> having to modify all others. If I could simply use the inherent order
>>>>>> of
>>>>>> the table then it would be much easier but then I think inserting
>>>>>> will be
>>>>>> very hard. I suppose I could have a unique ID for each one and I
>>>>>> think
>>>>>> that will work but not completely sure.
>>>>>>
>>>>>> Not sure if its possible to insert a row inbetween rows? But if I
>>>>>> could
>>>>>> and I could be sure that SQL would not modify the order then I think
>>>>>> I
>>>>>> could do it easily... else I end up having to have a field that
>>>>>> contains
>>>>>> relative information and I'd have to check every single row for it
>>>>>> which
>>>>>> is not what I'm going to do.
>>>>>>
>>>>>> Any ideas?
>>>>>>
>>>>>> Thanks,
>>>>>> Jon
>>>>> No. By definition, tables in RDB's are unordered. That's what the
>>>>> ORDER
>>>>> clause in the SELECT statement is for.
>>>>>
>>>> but how does it order it by?
>>> If your SQL specifies ORDER BY, that's how the output is ordered.
>>> (in the case of ties, the ordering between equal-order rows is not
>>> defined, but if you sort on a UNIQUE key, this won't be an issue).
>>> If your SQL does not specify ORDER BY, no matter what order you get
>>> for the output, you can't complain about it, since it's not wrong.
>>>
>>>> lexographical?
>>> Malevolent. The ordering will be such that it will seem to work fine
>>> until you demo it to the boss or a customer. See Murphy's Law.
>>>
>>>> I'm a little worried about how
>>>> I will set the id for each row so that when I order it it will give me
>>>> the
>>>> heirarchy. I don't think I can find a sufficient solution using that
>>>> unless
>>>> I can specify how it is to be ordered(without any non-portable sql
>>>> code).
>>> You don't have to order by numbers. You can use a string. Each
>>> item in a hierarchy can take the ID of its parent plus one additional
>>> character (or a fixed number of additional characters), which
>>> determines the ordering of its sub-topics. Suppose you have this
>>> (partial) outline for a paper:
>>>
>>> The Internet ()
>>>
>>> I. Viruses and Malware (1)
>>> A. Microsoft Windows (1A)
>>> B. Internet Explorer (1B)
>>> II. Criminals on the Internet (2)
>>> A. Spammers (2A)
>>> B. Predators (2B)
>>> 1. Cops pretending to be kids (2B1)
>>> 2. Chris Hansen (2B2)
>>> 3. Cops pretending to be FBI (2B3)
>>> C. Fraudsters (2C)
>>> 1. Phishing attacks (2C1)
>>> 2. Phalse advertising (2C2)
>>> III. Copyright Infringement (3)
>>> A. Stolen Music (3A)
>>> B. Stolen Movies (3B)
>>> C. Stolen Software (3C)
>>>
>>> If it's an unordered hierarchy, new items can be added at the end
>>> under the parent, for example, "Stolen Pictures" probably gets (3D).
>>> If you insist that it has to go between "Stolen Music" and "Stolen
>>> Movies", it gets (3B), and you only have to renumber "Stolen Movies"
>>> and "Stolen Software".
>>>

>>
>> I don't see how its that efficient... if I have 100's of levels with
>> 100's of children then using just letters can start to waste space very
>> quickly.
>>
>> if I use each char as a full byte(0..255) then how do they get compared?
>>
>>
>> I think I can use a decimal if I encode it properly to represent the
>> level and it should work fine with the order by.
>>
>> I can't see how using a full char(0..255) and concatinating them to form
>> an id will be processed by order correctly and just using letters(0..25 I
>> suppose since its probably not case sensitive) is about 10 times more
>> space(and because I need a larger number of "levels" it will quickly add
>> up to).
>>
>> Jon

>
> The question arises - what exactly are you trying to do? 100's of levels?
> 100's of children?
>


100's of nodes. its about nesting or if you prefer, tree's.


Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #8 (permalink)  
Old 02-28-2008, 10:02 AM
subtenante
 
Posts: n/a
Default Re: ordered tables

On Thu, 14 Jun 2007 15:35:05 -0500, "Jon Slaughter"
<Jon_Slaughter@Hotmail.com> wrote:

>Is there such a thing as ordered tables in sql or a simple way to emulate
>it? i.e., the order in the table matters and one can insert into into the
>table w.r.t to this order?
>
>I suppose I can have a column that sorta simulates the order but the problem
>is that I don't see how I can simply insert a new row without having to
>modify all others. If I could simply use the inherent order of the table
>then it would be much easier but then I think inserting will be very hard. I
>suppose I could have a unique ID for each one and I think that will work but
>not completely sure.
>
>Not sure if its possible to insert a row inbetween rows? But if I could and
>I could be sure that SQL would not modify the order then I think I could do
>it easily... else I end up having to have a field that contains relative
>information and I'd have to check every single row for it which is not what
>I'm going to do.
>
>Any ideas?
>
>Thanks,
>Jon
>


I would do something dirty like this :
table{id, parentid, childid, order, ...}

order is a BIGINT, generated by a procedure. It starts from the row
with parentid = null, puts order = 1000. (pretending you don't plan to
have more than the max value of a BIGINT/1000 rows in your table)
You affect an order of n+1000 for the child of the row that had n as
order.

When you insert a row, you must update : the child value of its parent
and parent value of it child, and give the new row an order of
(parentorder+childorder)/2. That's done with a procedure but it's not
too heavy and has to modify only two rows.
If it is not possible to get a proper order (neworder=parentorder OR
neworder = childorder), call the procedure that reaffects all the
orders (which will be done only when you have inserted 1000 rows
between two original rows).
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #9 (permalink)  
Old 02-28-2008, 10:02 AM
strawberry
 
Posts: n/a
Default Re: ordered tables

On Jun 15, 7:18 am, subtenante <zzsubtenant...@gmail.com> wrote:
> On Thu, 14 Jun 2007 15:35:05 -0500, "Jon Slaughter"
>
>
>
> <Jon_Slaugh...@Hotmail.com> wrote:
> >Is there such a thing as ordered tables in sql or a simple way to emulate
> >it? i.e., the order in the table matters and one can insert into into the
> >table w.r.t to this order?

>
> >I suppose I can have a column that sorta simulates the order but the problem
> >is that I don't see how I can simply insert a new row without having to
> >modify all others. If I could simply use the inherent order of the table
> >then it would be much easier but then I think inserting will be very hard. I
> >suppose I could have a unique ID for each one and I think that will work but
> >not completely sure.

>
> >Not sure if its possible to insert a row inbetween rows? But if I could and
> >I could be sure that SQL would not modify the order then I think I could do
> >it easily... else I end up having to have a field that contains relative
> >information and I'd have to check every single row for it which is not what
> >I'm going to do.

>
> >Any ideas?

>
> >Thanks,
> >Jon

>
> I would do something dirty like this :
> table{id, parentid, childid, order, ...}
>
> order is a BIGINT, generated by a procedure. It starts from the row
> with parentid = null, puts order = 1000. (pretending you don't plan to
> have more than the max value of a BIGINT/1000 rows in your table)
> You affect an order of n+1000 for the child of the row that had n as
> order.
>
> When you insert a row, you must update : the child value of its parent
> and parent value of it child, and give the new row an order of
> (parentorder+childorder)/2. That's done with a procedure but it's not
> too heavy and has to modify only two rows.
> If it is not possible to get a proper order (neworder=parentorder OR
> neworder = childorder), call the procedure that reaffects all the
> orders (which will be done only when you have inserted 1000 rows
> between two original rows).



Perhaps you should take a look at nested sets:

http://dev.mysql.com/tech-resources/...ical-data.html

There's a good article at sitepoint too

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #10 (permalink)  
Old 02-28-2008, 10:02 AM
subtenante
 
Posts: n/a
Default Re: ordered tables

On Fri, 15 Jun 2007 00:41:47 -0700, strawberry <zac.carey@gmail.com>
wrote:

>Perhaps you should take a look at nested sets:
>
>http://dev.mysql.com/tech-resources/...ical-data.html
>
>There's a good article at sitepoint too


This is a good thing for trees but for linked list, i'm not sure it is
of great help, it would result in the solution Jon was running away
from (updating in mean half of the rows for each insert/delete).
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 04:57 AM.


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