Any help/guidance would be greatly appreciated!
Thanks,
Ben
The team I work with have a product that provides this functionality
-- it is a web-based utility that you can upload an Object Migration
package to, and it will generate documentation on the objects,
associations, queries, workflows etc. contained in the package and
their relationships to other objects. Let me know if you're
interested, I can set up a demo for you.
If you have some fairly rudimentary needs, I can give you some
guidance on what tables you would query out of to get most of the meta-
information.
Eric
\ken
> > Ben- Hide quoted text -
>
> - Show quoted text -
WOW the Brain app is pretty cool looking! Have you purchased it (the
Pro or Core version)? While it looks very cool and could be helpful,
as you said, as a presentation layer, but it doesn't appear to justify
the the price -- maybe the free will do though... But it would be
nice not to have to enter it yourself :-)
Thanks,
Ben
I love to get a demo your new product. I am always interested in see
new tech/apps! Let me know when I could get a demo of this tool.
Thanks again,
Ben
On Jan 5, 6:27 pm, Eric <eric.gl...@gmail.com> wrote:
--
You received this message because you are subscribed to the Google Groups "triDeveloper" group.
To post to this group, send email to tridev...@googlegroups.com.
To unsubscribe from this group, send email to trideveloper...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/trideveloper?hl=en.
Great discussion guys!!!
Ben – Late to the dance here after the other responses, but we did a similar approach…our convention was to add all new fields to a library object first for standardization, with each new element carrying a flag that indicated it was custom and a date. We could then run SQL queries to get all custom work, even with date thresholds. Then the use of the description field at the entity level made more sense because we could rapidly extract and summarize the changes since a certain date or since a certain version.
Ken – Funny you’re pursuing The Brain…I’m fooling around this for socializing data structures, standards across a really messed up large enterprise. I agree there’s merits in this presentation layer.
Eric – If you schedule some type of demo, I’d love to see your approach, count me in.
jim
Unfortunately my free trial has expired. The Brain still works but I
can't edit it. It contains details on our customizations (which I now
can't remove) so I don't think I can send you the Brain file. I could
take some screen shots though, but that really doesn't do the model
justice. It's nice to see it "in motion"
One thing I would do differently though is use more Parent/Child links
even if the BOs aren't hierarchical (perhaps to better illustrate the
order of their use (ie: RE Transaction Plan as a "predecessor" to RE
Project).
\ken
> > trideveloper...@googlegroups.com<trideveloper%2Bunsubscribe@googlegroups.com>
> > .
> > For more options, visit this group at
> >http://groups.google.com/group/trideveloper?hl=en.- Hide quoted text -
Kenny
Here is how I have done this in the past (using SQL Server on another
system (non-tririga). If you are using Oracle I know there is a way
to do this same thing, but it has been years since I have used
Oracle.):
SELECT Tbls.TABLE_NAME AS [Table], Cols.COLUMN_NAME AS [Column],
Cols.IS_NULLABLE AS [Allows Nulls?],
Cols.DATA_TYPE AS Type
FROM INFORMATION_SCHEMA.TABLES AS Tbls INNER JOIN
INFORMATION_SCHEMA.COLUMNS AS Cols ON
Tbls.TABLE_NAME = Cols.TABLE_NAME
WHERE (Tbls.TABLE_NAME NOT LIKE 'sys%') AND (Tbls.TABLE_NAME <>
'dtproperties') AND (Tbls.TABLE_SCHEMA <> 'INFORMATION_SCHEMA')
ORDER BY [Table], Cols.ORDINAL_POSITION
This will return *all* tables and their fields (probably not what you
want), but maybe a good starting point if you can figure out how query
for only the tables you want. I have not looked that extensively at
the table structure in the tririga's DB, but I assume there is a way
to define criteria that would only show you the tables you want.
Hope this helps!
Ben
http://groups.google.com/group/trideveloper/web/example-docs.zip
Our application is a web-based service that processes Object Migration
zipfiles; so you can export your objects from TRIRIGA, upload the
zipfile, and get back a set of generated documentation.
We're still working through how we plan on making this utility
available (I'm pushing for a free hosted service, so that people in
the development community at large can easily upload migration
packages and automatically generate documentation). We are still
adding functionality and reports, and may at some point provide
customized reports as some sort of value-add service. If this
interests you, send me some feedback via e-mail (eric.glass at
gmail.com) and I can provide that to my management to gauge interest/
demand etc.
Eric
I have reviewed the example you provided and it looks great! When is
this going to be released for use?
Thanks,
Ben
Any update from anyone on this? We are looking to generate a Data Dictionary also.
I tweaked the sql below to work for Oracle but I'm still sitting at 107,692 rows of results. That's a heck of a lot to sift thru and define each field.
Regarding the zip file link somone posted...it's 2 years old and of course the link is invalid now. Got a newer link? Any more progress on using Brain?
Thanks,
Mike
|
| |
| Mobile:
+44 7976 615 023 E-mail: bev.t...@uk.ibm.com www.ibm.com/gbs/uk/assetmanagement |
|
Thanks,
Thanks,
Ben
--
You received this message because you are subscribed to the Google Groups
"triDeveloper" group.
To view this discussion on the web visit https://groups.google.com/d/msg/trideveloper/-/0jCm9zJNMrQJ.
To post to this group, send email to tridev...@googlegroups.com.
To unsubscribe from this group, send email to trideveloper...@googlegroups.com.
For more options, visit this group at
http://groups.google.com/group/trideveloper?hl=en.
Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number
741598.
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6
3AU