Showing records from two db's in one portal?

Ask a Question related to FileMaker, Design and Development.

  1. #1

    Default Re: Showing records from two db's in one portal?

    Depends on the eventual mechanism you intend for analysing your data.
    If it means combining similar types of data into sets and sorting for
    comparison, then you might try creating a third file [Master] (e.g.. via
    cloning) and setting it up with import routines/ scripts. There are data
    integrity issues to be dealt with but most basically ...

    [REFRESH]: script in Master
    Show All Records
    Delete All Records
    Perform Script | External Script (Slave_1, [xtREADY])
    Perform Script | External Script (Slave_2, [xtREADY])
    Import (Slave_1) [no dialog]
    Import (Slave_2) [no dialog]
    Sort ... etc.

    [xtREADY]: script in Slave_1, Slave_2, ...
    Freeze Window
    Show All Records ... or ... Find [Restore the subset(s) of interest],
    etc.
    Toggle Window [minimise]

    Scripted import\ export encompasses MUCH scope for bulk data management.

    Ross Scholes


    Ross Scholes Guest

  2. Similar Questions and Discussions

    1. Showing x to y of z records
      Hi. I'm extending the built in DataGrid to show a summary above the header row (see subject). I am doing this by creating a new...
    2. datagrid with no records - showing a line
      Hi everyone, Using asp.net and a datagrid - When there are no records returned from the query - is there a way to add/insert a line into the...
    3. SQL is showing all records
      Hi, I'm using: SearchString = request.Form("SearchString") 'works fine TodaysDate = Date() 'gives todays date correclt formatted strsql =...
    4. [Q] Self join portal records - why one too many?
      Using FMP 6.04 dev under MacOS X 10.2.6 I have a self-join working just fine with the desired records appearing in the portal but there is one...
    5. Restricting detail records in a portal
      I have a typical order/order detail pair of tables. The main order table has fields like client, date, and other fields that pertain to the entire...
  3. #2

    Default Showing records from two db's in one portal?

    This would solve a HUGE problem for our school.

    Our school transcript database shows all classes completed in our
    school.

    I have a seperate databse with classes completed in other schools.

    How can I create one portal to show the information from both databases?

    Is there a different approach?

    This would allow our registrar to quickly check what courswork remains
    to be done. [something I hope to get FM to do someday, I would have to
    compare a list of specific classes needed with actual classes completed
    [if someone can get me on the rihght track for that, it would be a
    bonus!]]
    tester Guest

  4. #3

    Default Re: Showing records from two db's in one portal?

    You can't actually display records from two databases in a single portal,
    but there is no reason why you can't display two portals on a single layout,
    then create calc fields to summarise the data in each (eg total credit
    points awarded), eg calc (number result) = Sum (relationship::field). Add
    the results in a third calc to show total earned to date. In another calc,
    you could subtract them from total credit points required to show total
    still required. These calc fields can be displayed on any layout where that
    information is needed, with or without the portals (although be wary of
    putting them in a list or table view).

    Bridget Eley

    in article 091020031324351585%martinc6868@yahoo.com, tester at
    [email]martinc6868@yahoo.com[/email] wrote on 10/10/03 6:24 AM:
    > This would solve a HUGE problem for our school.
    >
    > Our school transcript database shows all classes completed in our
    > school.
    >
    > I have a seperate databse with classes completed in other schools.
    >
    > How can I create one portal to show the information from both databases?
    >
    > Is there a different approach?
    >
    > This would allow our registrar to quickly check what courswork remains
    > to be done. [something I hope to get FM to do someday, I would have to
    > compare a list of specific classes needed with actual classes completed
    > [if someone can get me on the rihght track for that, it would be a
    > bonus!]]
    --

    (to email direct, replace "DOT" with "." and remove ".invalid")

    Bridget Eley Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

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