Обсуждение: joining databases

Поиск
Список
Период
Сортировка

joining databases

От
will trillich
Дата:
how can i join separate DATABASES?

    select
        a.fld1,b.fld2
    from
        DBfirst.alphaTable  as a,
        DBsecond.bravoTable as b
    where
        a.xyz = b.pdq
    ;

if not possible, what's the procedure for breaking up tables
across various disk drives for speed optimization?

--
It is always hazardous to ask "Why?" in science, but it is often
interesting to do so just the same.
        -- Isaac Asimov, 'The Genetic Code'

will@serensoft.com
http://groups.yahoo.com/group/newbieDoc -- we need your brain!
http://www.dontUthink.com/ -- your brain needs us!

Re: joining databases

От
"Oliver Elphick"
Дата:
will trillich wrote:
  >how can i join separate DATABASES?
  >
  >    select
  >        a.fld1,b.fld2
  >    from
  >        DBfirst.alphaTable  as a,
  >        DBsecond.bravoTable as b
  >    where
  >        a.xyz = b.pdq
  >    ;

It can't be done

  >if not possible, what's the procedure for breaking up tables
  >across various disk drives for speed optimization?

The simplest method is to use symbolic links.

--
Oliver Elphick                                Oliver.Elphick@lfix.co.uk
Isle of Wight                              http://www.lfix.co.uk/oliver
PGP: 1024R/32B8FAA1: 97 EA 1D 47 72 3F 28 47  6B 7E 39 CC 56 E4 C1 47
GPG: 1024D/3E1D0C1C: CA12 09E0 E8D5 8870 5839  932A 614D 4C34 3E1D 0C1C
                 ========================================
     "If we confess our sins, he is faithful and just to
      forgive us our sins, and to cleanse us from all
      unrighteousness."       I John 1:9



Re: joining databases

От
Anand Raman
Дата:
Currently there is no way to acces more than one db at a time.. But i
heard that there will be implementation of schema pretty soon..

Anand


On Tue, Feb 27, 2001 at 06:09:03PM -0600, will trillich wrote:
>how can i join separate DATABASES?
>
>    select
>        a.fld1,b.fld2
>    from
>        DBfirst.alphaTable  as a,
>        DBsecond.bravoTable as b
>    where
>        a.xyz = b.pdq
>    ;
>
>if not possible, what's the procedure for breaking up tables
>across various disk drives for speed optimization?
>
>--
>It is always hazardous to ask "Why?" in science, but it is often
>interesting to do so just the same.
>        -- Isaac Asimov, 'The Genetic Code'
>
>will@serensoft.com
>http://groups.yahoo.com/group/newbieDoc -- we need your brain!
>http://www.dontUthink.com/ -- your brain needs us!