dbTalk Databases Forums  

Return multiple copies of same row in table with sequence number

comp.databases.oracle.misc comp.databases.oracle.misc


Discuss Return multiple copies of same row in table with sequence number in the comp.databases.oracle.misc forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
egnew@charter.net
 
Posts: n/a

Default Return multiple copies of same row in table with sequence number - 03-07-2008 , 07:20 PM






I want to return multiple copies of data from a table but do not
understand how to accomplish this. The following code works to return
a fixed number of copies but I cannot determine how to replace the
constant with a variable. How do I do this and is there an easier
way?

I need to print numbered certificates for an employee. I can use the
following sql to generate a fixed number of certificates but the
number I need is in a field on the record.

select x.SeqNo,e.EmployeeNo,e.EmployeeName
from Employees e,
(select rownum SeqNo from dual connect by level <= 3) x
where e.EmployeeNo = 78
order by SeqNo

This returns:

1 78 Joe
2 78 Joe
3 78 Joe

What I need is:

select x.SeqNo,e.EmployeeNo,e.EmployeeName
from Employees e,
(select rownum SeqNo from dual connect by level <=
e.CertificateCount) x
where e.EmployeeNo = 78
order by SeqNo

However the above SQL returns ORA-00904: "H"."LICENSECOUNT": invalid
identifier.

I have tried a number of other approaches but none have worked.

Thanks.

Reply With Quote
  #2  
Old   
Charles Hooper
 
Posts: n/a

Default Re: Return multiple copies of same row in table with sequence number - 03-07-2008 , 09:00 PM






On Mar 7, 8:20*pm, eg... (AT) charter (DOT) net wrote:
Quote:
I want to return multiple copies of data from a table but do not
understand how to accomplish this. *The following code works to return
a fixed number of copies but I cannot determine how to replace the
constant with a variable. *How do I do this and is there an easier
way?

I need to print numbered certificates for an employee. *I can use the
following sql to generate a fixed number of certificates but the
number I need is in a field on the record.

select x.SeqNo,e.EmployeeNo,e.EmployeeName
* from Employees e,
*(select rownum SeqNo from dual connect by level <= 3) x
* where e.EmployeeNo = 78
order by SeqNo

This returns:

1 78 Joe
2 78 Joe
3 78 Joe

What I need is:

select x.SeqNo,e.EmployeeNo,e.EmployeeName
* from Employees e,
*(select rownum SeqNo from dual connect by level <=
e.CertificateCount) x
* where e.EmployeeNo = 78
order by SeqNo

However the above SQL returns ORA-00904: "H"."LICENSECOUNT": invalid
identifier.

I have tried a number of other approaches but none have worked.

Thanks.
Slight modification to your query:
select x.SeqNo,e.EmployeeNo,e.EmployeeName
from Employees e,
(select rownum SeqNo from dual connect by level <= 1000) x
where e.EmployeeNo = 78
and x.SeqNo <= e.CertificateCount
order by SeqNo;

In the above, make certain that 1000 is larger than all values of
e.CertificateCount. You may find that the above approach using
CONNECT BY LEVEL will cause excessive CPU consumption if there are
many rows in the Employees table, or if the value following <= is very
large. A work around would be to either reference one of your large
tables (large number of rows, with few columns) in the inline view, or
to build a single column counter table:
select x.SeqNo,e.EmployeeNo,e.EmployeeName
from Employees e,
(SELECT
ROWNUM SeqNo
FROM
MY_BIG_TABLE
WHERE
ROWNUM <= 1000) x
where e.EmployeeNo = 78
and x.SeqNo <= e.CertificateCount
order by SeqNo;

-or-
CREATE TABLE MY_COUNTER AS
SELECT
ROWNUM RN
FROM
DUAL
CONNECT BY
LEVEL<=100000;

select x.SeqNo,e.EmployeeNo,e.EmployeeName
from Employees e,
(SELECT
ROWNUM SeqNo
FROM
MY_COUNTER
WHERE
ROWNUM <= 1000) x
where e.EmployeeNo = 78
and x.SeqNo <= e.CertificateCount
order by SeqNo;

Charles Hooper
IT Manager/Oracle DBA
K&M Machine-Fabricating, Inc.


Reply With Quote
  #3  
Old   
Charles Hooper
 
Posts: n/a

Default Re: Return multiple copies of same row in table with sequence number - 03-07-2008 , 09:00 PM



On Mar 7, 8:20*pm, eg... (AT) charter (DOT) net wrote:
Quote:
I want to return multiple copies of data from a table but do not
understand how to accomplish this. *The following code works to return
a fixed number of copies but I cannot determine how to replace the
constant with a variable. *How do I do this and is there an easier
way?

I need to print numbered certificates for an employee. *I can use the
following sql to generate a fixed number of certificates but the
number I need is in a field on the record.

select x.SeqNo,e.EmployeeNo,e.EmployeeName
* from Employees e,
*(select rownum SeqNo from dual connect by level <= 3) x
* where e.EmployeeNo = 78
order by SeqNo

This returns:

1 78 Joe
2 78 Joe
3 78 Joe

What I need is:

select x.SeqNo,e.EmployeeNo,e.EmployeeName
* from Employees e,
*(select rownum SeqNo from dual connect by level <=
e.CertificateCount) x
* where e.EmployeeNo = 78
order by SeqNo

However the above SQL returns ORA-00904: "H"."LICENSECOUNT": invalid
identifier.

I have tried a number of other approaches but none have worked.

Thanks.
Slight modification to your query:
select x.SeqNo,e.EmployeeNo,e.EmployeeName
from Employees e,
(select rownum SeqNo from dual connect by level <= 1000) x
where e.EmployeeNo = 78
and x.SeqNo <= e.CertificateCount
order by SeqNo;

In the above, make certain that 1000 is larger than all values of
e.CertificateCount. You may find that the above approach using
CONNECT BY LEVEL will cause excessive CPU consumption if there are
many rows in the Employees table, or if the value following <= is very
large. A work around would be to either reference one of your large
tables (large number of rows, with few columns) in the inline view, or
to build a single column counter table:
select x.SeqNo,e.EmployeeNo,e.EmployeeName
from Employees e,
(SELECT
ROWNUM SeqNo
FROM
MY_BIG_TABLE
WHERE
ROWNUM <= 1000) x
where e.EmployeeNo = 78
and x.SeqNo <= e.CertificateCount
order by SeqNo;

-or-
CREATE TABLE MY_COUNTER AS
SELECT
ROWNUM RN
FROM
DUAL
CONNECT BY
LEVEL<=100000;

select x.SeqNo,e.EmployeeNo,e.EmployeeName
from Employees e,
(SELECT
ROWNUM SeqNo
FROM
MY_COUNTER
WHERE
ROWNUM <= 1000) x
where e.EmployeeNo = 78
and x.SeqNo <= e.CertificateCount
order by SeqNo;

Charles Hooper
IT Manager/Oracle DBA
K&M Machine-Fabricating, Inc.


Reply With Quote
  #4  
Old   
Charles Hooper
 
Posts: n/a

Default Re: Return multiple copies of same row in table with sequence number - 03-07-2008 , 09:00 PM



On Mar 7, 8:20*pm, eg... (AT) charter (DOT) net wrote:
Quote:
I want to return multiple copies of data from a table but do not
understand how to accomplish this. *The following code works to return
a fixed number of copies but I cannot determine how to replace the
constant with a variable. *How do I do this and is there an easier
way?

I need to print numbered certificates for an employee. *I can use the
following sql to generate a fixed number of certificates but the
number I need is in a field on the record.

select x.SeqNo,e.EmployeeNo,e.EmployeeName
* from Employees e,
*(select rownum SeqNo from dual connect by level <= 3) x
* where e.EmployeeNo = 78
order by SeqNo

This returns:

1 78 Joe
2 78 Joe
3 78 Joe

What I need is:

select x.SeqNo,e.EmployeeNo,e.EmployeeName
* from Employees e,
*(select rownum SeqNo from dual connect by level <=
e.CertificateCount) x
* where e.EmployeeNo = 78
order by SeqNo

However the above SQL returns ORA-00904: "H"."LICENSECOUNT": invalid
identifier.

I have tried a number of other approaches but none have worked.

Thanks.
Slight modification to your query:
select x.SeqNo,e.EmployeeNo,e.EmployeeName
from Employees e,
(select rownum SeqNo from dual connect by level <= 1000) x
where e.EmployeeNo = 78
and x.SeqNo <= e.CertificateCount
order by SeqNo;

In the above, make certain that 1000 is larger than all values of
e.CertificateCount. You may find that the above approach using
CONNECT BY LEVEL will cause excessive CPU consumption if there are
many rows in the Employees table, or if the value following <= is very
large. A work around would be to either reference one of your large
tables (large number of rows, with few columns) in the inline view, or
to build a single column counter table:
select x.SeqNo,e.EmployeeNo,e.EmployeeName
from Employees e,
(SELECT
ROWNUM SeqNo
FROM
MY_BIG_TABLE
WHERE
ROWNUM <= 1000) x
where e.EmployeeNo = 78
and x.SeqNo <= e.CertificateCount
order by SeqNo;

-or-
CREATE TABLE MY_COUNTER AS
SELECT
ROWNUM RN
FROM
DUAL
CONNECT BY
LEVEL<=100000;

select x.SeqNo,e.EmployeeNo,e.EmployeeName
from Employees e,
(SELECT
ROWNUM SeqNo
FROM
MY_COUNTER
WHERE
ROWNUM <= 1000) x
where e.EmployeeNo = 78
and x.SeqNo <= e.CertificateCount
order by SeqNo;

Charles Hooper
IT Manager/Oracle DBA
K&M Machine-Fabricating, Inc.


Reply With Quote
  #5  
Old   
Charles Hooper
 
Posts: n/a

Default Re: Return multiple copies of same row in table with sequence number - 03-07-2008 , 09:00 PM



On Mar 7, 8:20*pm, eg... (AT) charter (DOT) net wrote:
Quote:
I want to return multiple copies of data from a table but do not
understand how to accomplish this. *The following code works to return
a fixed number of copies but I cannot determine how to replace the
constant with a variable. *How do I do this and is there an easier
way?

I need to print numbered certificates for an employee. *I can use the
following sql to generate a fixed number of certificates but the
number I need is in a field on the record.

select x.SeqNo,e.EmployeeNo,e.EmployeeName
* from Employees e,
*(select rownum SeqNo from dual connect by level <= 3) x
* where e.EmployeeNo = 78
order by SeqNo

This returns:

1 78 Joe
2 78 Joe
3 78 Joe

What I need is:

select x.SeqNo,e.EmployeeNo,e.EmployeeName
* from Employees e,
*(select rownum SeqNo from dual connect by level <=
e.CertificateCount) x
* where e.EmployeeNo = 78
order by SeqNo

However the above SQL returns ORA-00904: "H"."LICENSECOUNT": invalid
identifier.

I have tried a number of other approaches but none have worked.

Thanks.
Slight modification to your query:
select x.SeqNo,e.EmployeeNo,e.EmployeeName
from Employees e,
(select rownum SeqNo from dual connect by level <= 1000) x
where e.EmployeeNo = 78
and x.SeqNo <= e.CertificateCount
order by SeqNo;

In the above, make certain that 1000 is larger than all values of
e.CertificateCount. You may find that the above approach using
CONNECT BY LEVEL will cause excessive CPU consumption if there are
many rows in the Employees table, or if the value following <= is very
large. A work around would be to either reference one of your large
tables (large number of rows, with few columns) in the inline view, or
to build a single column counter table:
select x.SeqNo,e.EmployeeNo,e.EmployeeName
from Employees e,
(SELECT
ROWNUM SeqNo
FROM
MY_BIG_TABLE
WHERE
ROWNUM <= 1000) x
where e.EmployeeNo = 78
and x.SeqNo <= e.CertificateCount
order by SeqNo;

-or-
CREATE TABLE MY_COUNTER AS
SELECT
ROWNUM RN
FROM
DUAL
CONNECT BY
LEVEL<=100000;

select x.SeqNo,e.EmployeeNo,e.EmployeeName
from Employees e,
(SELECT
ROWNUM SeqNo
FROM
MY_COUNTER
WHERE
ROWNUM <= 1000) x
where e.EmployeeNo = 78
and x.SeqNo <= e.CertificateCount
order by SeqNo;

Charles Hooper
IT Manager/Oracle DBA
K&M Machine-Fabricating, Inc.


Reply With Quote
  #6  
Old   
Urs Metzger
 
Posts: n/a

Default Re: Return multiple copies of same row in table with sequence number - 03-08-2008 , 07:38 AM



egnew (AT) charter (DOT) net schrieb:
Quote:
I want to return multiple copies of data from a table but do not
understand how to accomplish this. The following code works to return
a fixed number of copies but I cannot determine how to replace the
constant with a variable. How do I do this and is there an easier
way?

I need to print numbered certificates for an employee. I can use the
following sql to generate a fixed number of certificates but the
number I need is in a field on the record.

select x.SeqNo,e.EmployeeNo,e.EmployeeName
from Employees e,
(select rownum SeqNo from dual connect by level <= 3) x
where e.EmployeeNo = 78
order by SeqNo

This returns:

1 78 Joe
2 78 Joe
3 78 Joe

What I need is:

select x.SeqNo,e.EmployeeNo,e.EmployeeName
from Employees e,
(select rownum SeqNo from dual connect by level <=
e.CertificateCount) x
where e.EmployeeNo = 78
order by SeqNo

However the above SQL returns ORA-00904: "H"."LICENSECOUNT": invalid
identifier.

I have tried a number of other approaches but none have worked.

Thanks.
No need for DUAL, use your table instead:#

Oracle Database 10g Express Edition Release 10.2.0.1.0 - Production

SQL> create table Employees as
2 select rownum as EmployeeNo,
3 object_name as EmployeeName,
4 trunc(dbms_random.value(1, 10)) as CertificateCount
5 from all_objects where rownum < 100;

Table created.

SQL> alter table Employees
2 add constraint pk_employees primary key(EmployeeNo);

Table altered.

SQL> select *
2 from Employees
3 where EmployeeNo = 78;

EMPLOYEENO EMPLOYEENAME CERTIFICATECOUNT
---------- ------------------------------ ----------------
78 V$FAST_START_SERVERS 7

SQL> select level, EmployeeNo, EmployeeName
2 from Employees
3 connect by EmployeeNo = 78 and level <= CertificateCount
4 start with EmployeeNo = 78;

LEVEL EMPLOYEENO EMPLOYEENAME
---------- ---------- ------------------------------
1 78 V$FAST_START_SERVERS
2 78 V$FAST_START_SERVERS
3 78 V$FAST_START_SERVERS
4 78 V$FAST_START_SERVERS
5 78 V$FAST_START_SERVERS
6 78 V$FAST_START_SERVERS
7 78 V$FAST_START_SERVERS

7 rows selected.


Urs Metzger




Reply With Quote
  #7  
Old   
Urs Metzger
 
Posts: n/a

Default Re: Return multiple copies of same row in table with sequence number - 03-08-2008 , 07:38 AM



egnew (AT) charter (DOT) net schrieb:
Quote:
I want to return multiple copies of data from a table but do not
understand how to accomplish this. The following code works to return
a fixed number of copies but I cannot determine how to replace the
constant with a variable. How do I do this and is there an easier
way?

I need to print numbered certificates for an employee. I can use the
following sql to generate a fixed number of certificates but the
number I need is in a field on the record.

select x.SeqNo,e.EmployeeNo,e.EmployeeName
from Employees e,
(select rownum SeqNo from dual connect by level <= 3) x
where e.EmployeeNo = 78
order by SeqNo

This returns:

1 78 Joe
2 78 Joe
3 78 Joe

What I need is:

select x.SeqNo,e.EmployeeNo,e.EmployeeName
from Employees e,
(select rownum SeqNo from dual connect by level <=
e.CertificateCount) x
where e.EmployeeNo = 78
order by SeqNo

However the above SQL returns ORA-00904: "H"."LICENSECOUNT": invalid
identifier.

I have tried a number of other approaches but none have worked.

Thanks.
No need for DUAL, use your table instead:#

Oracle Database 10g Express Edition Release 10.2.0.1.0 - Production

SQL> create table Employees as
2 select rownum as EmployeeNo,
3 object_name as EmployeeName,
4 trunc(dbms_random.value(1, 10)) as CertificateCount
5 from all_objects where rownum < 100;

Table created.

SQL> alter table Employees
2 add constraint pk_employees primary key(EmployeeNo);

Table altered.

SQL> select *
2 from Employees
3 where EmployeeNo = 78;

EMPLOYEENO EMPLOYEENAME CERTIFICATECOUNT
---------- ------------------------------ ----------------
78 V$FAST_START_SERVERS 7

SQL> select level, EmployeeNo, EmployeeName
2 from Employees
3 connect by EmployeeNo = 78 and level <= CertificateCount
4 start with EmployeeNo = 78;

LEVEL EMPLOYEENO EMPLOYEENAME
---------- ---------- ------------------------------
1 78 V$FAST_START_SERVERS
2 78 V$FAST_START_SERVERS
3 78 V$FAST_START_SERVERS
4 78 V$FAST_START_SERVERS
5 78 V$FAST_START_SERVERS
6 78 V$FAST_START_SERVERS
7 78 V$FAST_START_SERVERS

7 rows selected.


Urs Metzger




Reply With Quote
  #8  
Old   
Urs Metzger
 
Posts: n/a

Default Re: Return multiple copies of same row in table with sequence number - 03-08-2008 , 07:38 AM



egnew (AT) charter (DOT) net schrieb:
Quote:
I want to return multiple copies of data from a table but do not
understand how to accomplish this. The following code works to return
a fixed number of copies but I cannot determine how to replace the
constant with a variable. How do I do this and is there an easier
way?

I need to print numbered certificates for an employee. I can use the
following sql to generate a fixed number of certificates but the
number I need is in a field on the record.

select x.SeqNo,e.EmployeeNo,e.EmployeeName
from Employees e,
(select rownum SeqNo from dual connect by level <= 3) x
where e.EmployeeNo = 78
order by SeqNo

This returns:

1 78 Joe
2 78 Joe
3 78 Joe

What I need is:

select x.SeqNo,e.EmployeeNo,e.EmployeeName
from Employees e,
(select rownum SeqNo from dual connect by level <=
e.CertificateCount) x
where e.EmployeeNo = 78
order by SeqNo

However the above SQL returns ORA-00904: "H"."LICENSECOUNT": invalid
identifier.

I have tried a number of other approaches but none have worked.

Thanks.
No need for DUAL, use your table instead:#

Oracle Database 10g Express Edition Release 10.2.0.1.0 - Production

SQL> create table Employees as
2 select rownum as EmployeeNo,
3 object_name as EmployeeName,
4 trunc(dbms_random.value(1, 10)) as CertificateCount
5 from all_objects where rownum < 100;

Table created.

SQL> alter table Employees
2 add constraint pk_employees primary key(EmployeeNo);

Table altered.

SQL> select *
2 from Employees
3 where EmployeeNo = 78;

EMPLOYEENO EMPLOYEENAME CERTIFICATECOUNT
---------- ------------------------------ ----------------
78 V$FAST_START_SERVERS 7

SQL> select level, EmployeeNo, EmployeeName
2 from Employees
3 connect by EmployeeNo = 78 and level <= CertificateCount
4 start with EmployeeNo = 78;

LEVEL EMPLOYEENO EMPLOYEENAME
---------- ---------- ------------------------------
1 78 V$FAST_START_SERVERS
2 78 V$FAST_START_SERVERS
3 78 V$FAST_START_SERVERS
4 78 V$FAST_START_SERVERS
5 78 V$FAST_START_SERVERS
6 78 V$FAST_START_SERVERS
7 78 V$FAST_START_SERVERS

7 rows selected.


Urs Metzger




Reply With Quote
  #9  
Old   
Urs Metzger
 
Posts: n/a

Default Re: Return multiple copies of same row in table with sequence number - 03-08-2008 , 07:38 AM



egnew (AT) charter (DOT) net schrieb:
Quote:
I want to return multiple copies of data from a table but do not
understand how to accomplish this. The following code works to return
a fixed number of copies but I cannot determine how to replace the
constant with a variable. How do I do this and is there an easier
way?

I need to print numbered certificates for an employee. I can use the
following sql to generate a fixed number of certificates but the
number I need is in a field on the record.

select x.SeqNo,e.EmployeeNo,e.EmployeeName
from Employees e,
(select rownum SeqNo from dual connect by level <= 3) x
where e.EmployeeNo = 78
order by SeqNo

This returns:

1 78 Joe
2 78 Joe
3 78 Joe

What I need is:

select x.SeqNo,e.EmployeeNo,e.EmployeeName
from Employees e,
(select rownum SeqNo from dual connect by level <=
e.CertificateCount) x
where e.EmployeeNo = 78
order by SeqNo

However the above SQL returns ORA-00904: "H"."LICENSECOUNT": invalid
identifier.

I have tried a number of other approaches but none have worked.

Thanks.
No need for DUAL, use your table instead:#

Oracle Database 10g Express Edition Release 10.2.0.1.0 - Production

SQL> create table Employees as
2 select rownum as EmployeeNo,
3 object_name as EmployeeName,
4 trunc(dbms_random.value(1, 10)) as CertificateCount
5 from all_objects where rownum < 100;

Table created.

SQL> alter table Employees
2 add constraint pk_employees primary key(EmployeeNo);

Table altered.

SQL> select *
2 from Employees
3 where EmployeeNo = 78;

EMPLOYEENO EMPLOYEENAME CERTIFICATECOUNT
---------- ------------------------------ ----------------
78 V$FAST_START_SERVERS 7

SQL> select level, EmployeeNo, EmployeeName
2 from Employees
3 connect by EmployeeNo = 78 and level <= CertificateCount
4 start with EmployeeNo = 78;

LEVEL EMPLOYEENO EMPLOYEENAME
---------- ---------- ------------------------------
1 78 V$FAST_START_SERVERS
2 78 V$FAST_START_SERVERS
3 78 V$FAST_START_SERVERS
4 78 V$FAST_START_SERVERS
5 78 V$FAST_START_SERVERS
6 78 V$FAST_START_SERVERS
7 78 V$FAST_START_SERVERS

7 rows selected.


Urs Metzger




Reply With Quote
  #10  
Old   
egnew@charter.net
 
Posts: n/a

Default Re: Return multiple copies of same row in table with sequence number - 03-08-2008 , 08:26 AM



Urs Metzger:

Thank you very much. Your solution is what I needed.

Thanks, Sidney


On Mar 8, 7:38*am, Urs Metzger <u... (AT) ursmetzger (DOT) de> wrote:
Quote:
eg... (AT) charter (DOT) net schrieb:



I want to return multiple copies of data from a table but do not
understand how to accomplish this. *The following code works to return
a fixed number of copies but I cannot determine how to replace the
constant with a variable. *How do I do this and is there an easier
way?

I need to print numbered certificates for an employee. *I can use the
following sql to generate a fixed number of certificates but the
number I need is in a field on the record.

select x.SeqNo,e.EmployeeNo,e.EmployeeName
* from Employees e,
*(select rownum SeqNo from dual connect by level <= 3) x
* where e.EmployeeNo = 78
order by SeqNo

This returns:

1 78 Joe
2 78 Joe
3 78 Joe

What I need is:

select x.SeqNo,e.EmployeeNo,e.EmployeeName
* from Employees e,
*(select rownum SeqNo from dual connect by level <=
e.CertificateCount) x
* where e.EmployeeNo = 78
order by SeqNo

However the above SQL returns ORA-00904: "H"."LICENSECOUNT": invalid
identifier.

I have tried a number of other approaches but none have worked.

Thanks.

No need for DUAL, use your table instead:#

Oracle Database 10g Express Edition Release 10.2.0.1.0 - Production

SQL> create table Employees as
* *2 *select rownum as EmployeeNo,
* *3 * * * * object_name as EmployeeName,
* *4 * * * * trunc(dbms_random.value(1, 10)) as CertificateCount
* *5 * *from all_objects where rownum < 100;

Table created.

SQL> alter table Employees
* *2 *add constraint pk_employees primary key(EmployeeNo);

Table altered.

SQL> select *
* *2 * *from Employees
* *3 * where EmployeeNo = 78;

EMPLOYEENO EMPLOYEENAME * * * * * * * * * CERTIFICATECOUNT
---------- ------------------------------ ----------------
* * * * *78 V$FAST_START_SERVERS * * * * * * * ** * * * *7

SQL> select * * level, EmployeeNo, EmployeeName
* *2 * * * *from Employees
* *3 *connect by EmployeeNo = 78 and level <= CertificateCount
* *4 *start with EmployeeNo = 78;

* * * LEVEL EMPLOYEENO EMPLOYEENAME
---------- ---------- ------------------------------
* * * * * 1 * * * * 78 V$FAST_START_SERVERS
* * * * * 2 * * * * 78 V$FAST_START_SERVERS
* * * * * 3 * * * * 78 V$FAST_START_SERVERS
* * * * * 4 * * * * 78 V$FAST_START_SERVERS
* * * * * 5 * * * * 78 V$FAST_START_SERVERS
* * * * * 6 * * * * 78 V$FAST_START_SERVERS
* * * * * 7 * * * * 78 V$FAST_START_SERVERS

7 rows selected.

Urs Metzger- Hide quoted text -

- Show quoted text -


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



Powered by vBulletin Version 3.5.3
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.