dbTalk Databases Forums  

Need to map Universe to SQL

comp.databases.pick comp.databases.pick


Discuss Need to map Universe to SQL in the comp.databases.pick forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
Ed Sheehan
 
Posts: n/a

Default Need to map Universe to SQL - 02-03-2011 , 08:18 PM






Are there tools/techniques/objects to map Universe data to SQL? I have a
Universe box and a client with SQL. This is my first exposure to dealing
with "flatness" online. I know how to convert data, but I thought there
might be some interface which could model/map it on the fly.

Ed

Reply With Quote
  #2  
Old   
Kevin Powick
 
Posts: n/a

Default Re: Need to map Universe to SQL - 02-04-2011 , 06:44 AM






On 2011-02-03 21:18:46 -0500, "Ed Sheehan" <NOedsSPAM (AT) xmission (DOT) com> said:

Quote:
Are there tools/techniques/objects to map Universe data to SQL? I have a
Universe box and a client with SQL. This is my first exposure to dealing
with "flatness" online. I know how to convert data, but I thought there
might be some interface which could model/map it on the fly.
Hi Ed,

The wording of your question leaves me unsure of what exactly you're
trying to do for your client, so this may not be the answer for which
you are looking. Many version of SQL RDBMS allow for very fast bulk
loading of data from delimited files (i.e. csv). I've often found
using that facility the easiest/fastest way to move data from MV to SQL.

--
Kevin Powick

Reply With Quote
  #3  
Old   
Ed Sheehan
 
Posts: n/a

Default Re: Need to map Universe to SQL - 02-04-2011 , 08:08 AM



I am being a little cryptic to protect the client, but what I am seeking is
a way to have both databases co-exist, and exchange data in a live fashion.
I remember when I was using Advanced Revelation, they has a feature called
"envitonmental bonding," and I could actually bond to a dBase file, and it
appeared just like a Pick-style file.

Is there some mapping "object" which I could employ to do a live connection,
and have the two (Universe + SQL) databases communicate through a standard
(BASIC) language?

We're just trying to see if we need to toss one database or, more desirably,
use some intermediary to allow a free exchange of information without too
much reprogramming on either end.

Ed

"Kevin Powick" <nospam (AT) spamless (DOT) com> wrote

Quote:
On 2011-02-03 21:18:46 -0500, "Ed Sheehan" <NOedsSPAM (AT) xmission (DOT) com> said:

Are there tools/techniques/objects to map Universe data to SQL? I have a
Universe box and a client with SQL. This is my first exposure to dealing
with "flatness" online. I know how to convert data, but I thought there
might be some interface which could model/map it on the fly.

Hi Ed,

The wording of your question leaves me unsure of what exactly you're
trying to do for your client, so this may not be the answer for which you
are looking. Many version of SQL RDBMS allow for very fast bulk loading
of data from delimited files (i.e. csv). I've often found using that
facility the easiest/fastest way to move data from MV to SQL.

--
Kevin Powick


Reply With Quote
  #4  
Old   
mark
 
Posts: n/a

Default Re: Need to map Universe to SQL - 02-04-2011 , 08:36 AM



Checking Rocket Software's web site - in v11 (maybe be in previous
versions?) is something called EDA which looks very interesting

http://www.rocketsoftware.com/u2/products/universe

Mark

Reply With Quote
  #5  
Old   
Tony Gravagno
 
Posts: n/a

Default Re: Need to map Universe to SQL - 02-04-2011 , 10:43 AM



Ed, if this is the company I'm thinking about, we had a tool for a
homemade solution about a year ago. Someone decided not to use that
to create a DIY solution, and to go with another more expensive option
that supposedly did the entire job. I'm guessing that didn't work.
Might it be time to revisit that? You've read my blogs and we've
exchanged emails. You know what's possible. Is there something
different about new requirements for which the old solutions are not
suited?

If you look at one of my recent blogs on extensions for mv.NET, you'll
see I've written simple method calls which generate complex ADO.NET
data objects from mv.NET objects. This sort of thing can be used to
easily query MV with a Call to a BASIC sub, convert the resulting data
to a relational data table in one line of code, and then pass that
data to a relational DBMS using whatever mechanisms are available,
generally SQL query or stored procedure.

I don't think that's exactly what you want either. The point though,
is that the tools exist for creating solutions fairly quickly which
pretty much fit any requirement. For example, I can use the tools in
my kit to create a BASIC to SQL interface exactly as you describe,
perhaps with no requirement whatsoever for code to be written outside
of BASIC. Unless I see demand for this, I can't jump to creating such
a solution, but if I can do this kind of work for a client then it can
be productized afterward for everyone.

Best to you,
T

"Ed Sheehan" wrote:

Quote:
I am being a little cryptic to protect the client, but what I am seeking is
a way to have both databases co-exist, and exchange data in a live fashion.
I remember when I was using Advanced Revelation, they has a feature called
"envitonmental bonding," and I could actually bond to a dBase file, and it
appeared just like a Pick-style file.

Is there some mapping "object" which I could employ to do a live connection,
and have the two (Universe + SQL) databases communicate through a standard
(BASIC) language?

We're just trying to see if we need to toss one database or, more desirably,
use some intermediary to allow a free exchange of information without too
much reprogramming on either end.

Ed

Reply With Quote
  #6  
Old   
louiebergsagel@yahoo.com
 
Posts: n/a

Default Re: Need to map Universe to SQL - 02-06-2011 , 03:45 PM



Kore Technologies sells such a tool that I have heard good things
about:
Kourier Integrator Release 3 available! Best-in-Class MultiValue
integration suite provides ETL and EAI capabilities for connecting
UniData / UniVerse with other applications. The Quick Start Workbench
and SQL Accelerator automates creating a SQL data warehouse from a U2
database from start to finish.
http://www.koretech.com/
They are also a Rocket partner.

-- Louie Bergsagel

Reply With Quote
  #7  
Old   
bill_tidy@yahoo.co.uk
 
Posts: n/a

Default Re: Need to map Universe to SQL - 02-06-2011 , 04:10 PM



On Feb 4, 4:43*pm, Tony Gravagno <tony_grava... (AT) nospam (DOT) invalid> wrote:
Quote:
Ed, if this is the company I'm thinking about, we had a tool for a
homemade solution about a year ago. *Someone decided not to use that
to create a DIY solution, and to go with another more expensive option
that supposedly did the entire job. *I'm guessing that didn't work.
Might it be time to revisit that? *You've read my blogs and we've
exchanged emails. *You know what's possible. *Is there something
different about new requirements for which the old solutions are not
suited?

If you look at one of my recent blogs on extensions for mv.NET, you'll
see I've written simple method calls which generate complex ADO.NET
data objects from mv.NET objects. *This sort of thing can be used to
easily query MV with a Call to a BASIC sub, convert the resulting data
to a relational data table in one line of code, and then pass that
data to a relational DBMS using whatever mechanisms are available,
generally SQL query or stored procedure.

I don't think that's exactly what you want either. *The point though,
is that the tools exist for creating solutions fairly quickly which
pretty much fit any requirement. *For example, I can use the tools in
my kit to create a BASIC to SQL interface exactly as you describe,
perhaps with no requirement whatsoever for code to be written outside
of BASIC. *Unless I see demand for this, I can't jump to creating such
a solution, but if I can do this kind of work for a client then it can
be productized afterward for everyone.

Best to you,
T

"Ed Sheehan" wrote:
I am being a little cryptic to protect the client, but what I am seekingis
a way to have both databases co-exist, and exchange data in a live fashion.
I remember when I was using Advanced Revelation, they has a feature called
"envitonmental bonding," and I could actually bond to a dBase file, and it
appeared just like a Pick-style file.

Is there some mapping "object" which I could employ to do a live connection,
and have the two (Universe + SQL) databases communicate through a standard
(BASIC) language?

We're just trying to see if we need to toss one database or, more desirably,
use some intermediary to allow a free exchange of information without too
much reprogramming on either end.

Ed
asshole I solved this

Reply With Quote
  #8  
Old   
bill_tidy@yahoo.co.uk
 
Posts: n/a

Default Re: Need to map Universe to SQL - 02-06-2011 , 04:10 PM



just look for unidata sql extract on this site

I gave it away

don't buy anything off this moron I posted the solution

why did I fucking bother

Reply With Quote
  #9  
Old   
bill_tidy@yahoo.co.uk
 
Posts: n/a

Default Re: Need to map Universe to SQL - 02-06-2011 , 04:16 PM



I was giving software away in 2001 not just freeware -- complete
solutions because I believed people were intrinsically good & I would
maybe get something in return

Reply With Quote
  #10  
Old   
bill_tidy@yahoo.co.uk
 
Posts: n/a

Default Re: Need to map Universe to SQL - 02-06-2011 , 04:17 PM



I was giving software away in 2001 not just freeware -- complete
solutions because I believed people were intrinsically good & I would
maybe get something in return

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.