RE: [U2] Bad news from Microsoft

2005-10-23 Thread Ewinger Klaus
MSDE is replaced with the upcoming release of Microsoft SQL Server 2005. It is 
now called "SQL Server 2005 Express" and it is FREE! It is limited to 1 CPU, 1 
GB Ram and 4GB Database size. Although it is just a better way of marketing 
MSDE, I would consider this as a thread to U2. Especially for those of us, that 
develop some kind of "standard software" with U2 and also target smaller 
customer sizes, as we do.

See also: http://www.microsoft.com/sql/spotlight/expandsqlserver.mspx

-Klaus

-Urspr|ngliche Nachricht-
Von: Kritan [mailto:[EMAIL PROTECTED] 
Gesendet: Sonntag, 23. Oktober 2005 07:17
An: u2-users@listserver.u2ug.org
Betreff: [SPAM] - RE: [U2] Bad news from Microsoft - Sender blacklisted

Its called SQL MSDE (Desktop Edition).  It has been available for several 
years for free.  It doesn't come with the SQL Analyzer or Enterprise Manager so 
its a bit harder to manage than a purchased copy.  U2 has been around and 
going strong while its been available, so I doubt a new release will have much 
of an effect.

Steve

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Bob Woodward
Sent: Friday, October 21, 2005 11:35 AM
To: u2-users@listserver.u2ug.org
Subject: RE: [U2] Bad news from Microsoft

>From what I understand, this has been available for a while already.
They are just releasing an update.  I don't think this is that much of a 
concern to us.  At least I don't consider it that much MORE of a concern.
Your mileage may very, of course.

Bob W
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/

--
No virus found in this incoming message.
Checked by AVG Free Edition.
Version: 7.1.361 / Virus Database: 267.12.4/146 - Release Date: 10/21/2005
 

--
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.1.361 / Virus Database: 267.12.4/146 - Release Date: 10/21/2005
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


Re: [U2] [UV][OT]Embed command in CSV file? Perl's SpreadSheet::WriteExcel Module

2005-10-23 Thread John Godzina

Tony Gravagno wrote:


Mark Johnson wrote:
 


Tony:
What's the fastest path for someone who's been providing
the CSV's for the last 10 years and wants to deliver
something more complete. I don't want to spend a lot of
my client's money on packages. 
   



When I originally offered the NebulAnalysis package it was only about $600
per server, which would satisfy the needs of an entire office.  As it is
today your time=money cost is going to be a lot higher than that no matter
what DIY solution you choose.  I only mention this because in retrospect it
seems everyone assumes a package is going to cost a fortune so they don't
even bother to ask about price.  But onward we go...

The fastest path for someone who doesn't know how to code with Excel, IMO,
is to create a nice looking Excel document, then Save-As XML.  That XML is
now a document template.  Break it up into header, detail, and footer
sections, and replace any data with unique text like place marker.  In
BASIC, read the header and use it as a base for a new document.  Loop on
the detail template, populating it with live data and adding it to the XML
stream.  When done, add the the footer and write the doc.  You can kick off
a process to open Excel, read the XML, then Save-As an Excel XLS file.
This final file is what your users would use.

If I were to write a new one-off Excel integration routine, I might take
that approach because it's easy for almost anyone to admininster and
extend.  It allows end-users or a qualified IT person to create a nice
Excel document in a comfortable WYSIWYG manner.  The MV side is just
filling in the blanks without any understanding that it's creating an XML
or Excel document.  In fact this is good OOP, Model-View-Controller (MVC)
form, separating the UI from the rules, and the output could just as well
be a web page, Web Service, or any other medium.

For someone who does know how to code with VB, VBA, or a .NET language, the
best approach (maybe fastest too, depending...) would be to write an Excel
add-in for templates created by users like this, to extract data directly
from databases and/or run programs to generate such data.  The sheets would
be populated without reformatting into XML or writing BASIC code to do
string manipulation.  This is the approach I personally would take for a
real project or a new product.  (Inquiries welcome of course.)

The new Office 12 will allow us much better access into the internals of
Excel and other apps, so the above methods are good and stable for the
foreseeable future.

So those are the fastest solutions depending on one's experience.  The
right solutions involve learning the tools of the trade and keeping up with
technology rather than to try to get away with doing as little as possible
and using 10 year old methods to satisfy the needs of modern end-users.
The more end-users see Pick people using ancient methods, the less faith
they have in our abilities.  Their new solution will be to go pay someone
premium buck to do things right rather than waiting for their MV guys to do
it on the cheap.  As proof of this, I have a client right now who (no
kidding) has a $300K budget to make major changes to their MV app, but if
they can't get that done they have a $1Millon budget to re-write using MS
technologies.  Personally I think we Pickies should be doing things the
right way, and charge fair market value in the first place.  In the end,
everyone wins.

 


The assumption is that the users are using Excel. I've
taken some other advice on this forum to generate HTML
which has had some success but is limited in ease of
adding fields or making changes. Perhaps this is my
opportunity to get into XML. 


Thanks
Mark Johnson
   



XML does afford some more versatility than HTML.  Check it out and make
your own decisions from there.

HTH
TG@ removethisNebula-RnD.com
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/

 

If perl is an option, you may want to look into the spreadsheet module 
on cpan (
http://search.cpan.org/~jmcnamara/Spreadsheet-WriteExcel-2.15/lib/Spreadsheet/WriteExcel.pm  
)


After your pick process (or whatever) creates a csv file, run a perl 
script to use that file as input to create an *.xls file.  If you have a 
little knowledge of perl, you can be up an running in under a day 
creating basic scripts.


John
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] [UV][OT]Embed command in CSV file?

2005-10-23 Thread Tony Gravagno
Mark Johnson wrote:
> Tony:
> What's the fastest path for someone who's been providing
> the CSV's for the last 10 years and wants to deliver
> something more complete. I don't want to spend a lot of
> my client's money on packages. 

When I originally offered the NebulAnalysis package it was only about $600
per server, which would satisfy the needs of an entire office.  As it is
today your time=money cost is going to be a lot higher than that no matter
what DIY solution you choose.  I only mention this because in retrospect it
seems everyone assumes a package is going to cost a fortune so they don't
even bother to ask about price.  But onward we go...

The fastest path for someone who doesn't know how to code with Excel, IMO,
is to create a nice looking Excel document, then Save-As XML.  That XML is
now a document template.  Break it up into header, detail, and footer
sections, and replace any data with unique text like place marker.  In
BASIC, read the header and use it as a base for a new document.  Loop on
the detail template, populating it with live data and adding it to the XML
stream.  When done, add the the footer and write the doc.  You can kick off
a process to open Excel, read the XML, then Save-As an Excel XLS file.
This final file is what your users would use.

If I were to write a new one-off Excel integration routine, I might take
that approach because it's easy for almost anyone to admininster and
extend.  It allows end-users or a qualified IT person to create a nice
Excel document in a comfortable WYSIWYG manner.  The MV side is just
filling in the blanks without any understanding that it's creating an XML
or Excel document.  In fact this is good OOP, Model-View-Controller (MVC)
form, separating the UI from the rules, and the output could just as well
be a web page, Web Service, or any other medium.

For someone who does know how to code with VB, VBA, or a .NET language, the
best approach (maybe fastest too, depending...) would be to write an Excel
add-in for templates created by users like this, to extract data directly
from databases and/or run programs to generate such data.  The sheets would
be populated without reformatting into XML or writing BASIC code to do
string manipulation.  This is the approach I personally would take for a
real project or a new product.  (Inquiries welcome of course.)

The new Office 12 will allow us much better access into the internals of
Excel and other apps, so the above methods are good and stable for the
foreseeable future.

So those are the fastest solutions depending on one's experience.  The
right solutions involve learning the tools of the trade and keeping up with
technology rather than to try to get away with doing as little as possible
and using 10 year old methods to satisfy the needs of modern end-users.
The more end-users see Pick people using ancient methods, the less faith
they have in our abilities.  Their new solution will be to go pay someone
premium buck to do things right rather than waiting for their MV guys to do
it on the cheap.  As proof of this, I have a client right now who (no
kidding) has a $300K budget to make major changes to their MV app, but if
they can't get that done they have a $1Millon budget to re-write using MS
technologies.  Personally I think we Pickies should be doing things the
right way, and charge fair market value in the first place.  In the end,
everyone wins.

> The assumption is that the users are using Excel. I've
> taken some other advice on this forum to generate HTML
> which has had some success but is limited in ease of
> adding fields or making changes. Perhaps this is my
> opportunity to get into XML. 
> 
> Thanks
> Mark Johnson

XML does afford some more versatility than HTML.  Check it out and make
your own decisions from there.

HTH
TG@ removethisNebula-RnD.com
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


Re: [U2] [UV][OT]Embed command in CSV file? [ad]

2005-10-23 Thread Bruce Nichol

Goo'day, Mark,

At 20:44 23/10/05 -0400, you wrote:


Tony:

What's the fastest path for someone who's been providing the CSV's for the
last 10 years and wants to deliver something more complete. I don't want to
spend a lot of my client's money on packages.


Have you considered (a) the "terminal emulator" path or (b) DOWNLOAD?

I appreciate that there are sites out there infinitly larger than the 
environments we get involvred in, and that there are managers out there who 
will spend a dollar or two in getting a better solution, but way down here 
at the market we're in, CSV or some such seems to be "solution of choice" 
to most of our sites.


Sure, we've had people look at expanding their bailiwick to include data 
communications twixt UV and "desktop" products, but in most situations, the 
available paths have been discounted - too much money or too complicated 
with the introduction of  middle-ware  - "We're not computer geniuses.  We 
want something simple". They forgot "and as cheap as possible"


We've had some success with MV-aware terminal emulators with "import" and 
"export" functions, with UV and wIntegrate, but the per-user cost of 
wIntegrate vs Dynamic Connect (no "import" or "export") normally limits the 
implementation of wIntegrate to one or two desktops per site (Errr 
Should I mention what is now called "commercial OpenQM" with its bundled 
AccuTerm 2k2?   With all its "private functions")


With UV we also had lots of success, where implemented, with Cedarville 
Uni's DOWNLOAD - now, that's at the *right* price - but it needs a 
"complete" in-house person to keep the outlay *really* low... Users 
tend to spend a deal of money over time "automating" their 
requirements. to the extent, we found, where it falls into disfavour 
'cos of the "outside" (me) cost to produce "what we want"..  Not 
prepared to invest in training for staff, not prepared to invest in 
"outside" assistance...




The assumption is that the users are using Excel. I've taken some other
advice on this forum to generate HTML which has had some success but is
limited in ease of adding fields or making changes. Perhaps this is my
opportunity to get into XML.


DOWNLOAD *could* help you there, then  an "add on" reporting facility 
with XML  not an "add in" .


In his original post, Barry was looking for an "automatic autofit" of data 
into Excel cells.   Tony, in his reply, mentioned "DIY" XML.


I'm assuming that Barry's .csv file/s are a regular occurrence and of a 
"fixed" layout.   The easiest method we have used in these sorts of 
circumstances is an "up front" (saved) Excel macro to add in columns, 
format columns, add column headers, etc, etc, even to the extent of using 
Excel's "macro recorder".   So, it might take a couple of goes to get it 
right, but once it's there, it's there forever


But, I suppose that'd apply to XML as well as .csv

It works - and it's cheap




Thanks
Mark Johnson
- Original Message -
From: "Tony Gravagno" <[EMAIL PROTECTED]>
To: 
Sent: Sunday, October 23, 2005 5:46 PM
Subject: RE: [U2] [UV][OT]Embed command in CSV file? [ad]




--
No virus found in this incoming message.
Checked by AVG Anti-Virus.
Version: 7.1.361 / Virus Database: 267.12.4/146 - Release Date: 21/10/05


Regards,

Bruce Nichol
Talon Computer Services
ALBURYNSW 2640
Australia

http://www.taloncs.com.au

Tel: +61 (0)411149636
Fax: +61 (0)260232119

If it ain't broke, fix it till it is! 



--
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.1.361 / Virus Database: 267.12.4/146 - Release Date: 21/10/05
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


Re: [U2] [UV][OT]Embed command in CSV file?

2005-10-23 Thread Craig Bennett

Anyone looking for the SYLK format can go to:

http://www.wotsit.org/search.asp?page=2&s=database



Craig
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


Re: [U2] [UV][OT]Embed command in CSV file? [ad]

2005-10-23 Thread Mark Johnson
Tony:

What's the fastest path for someone who's been providing the CSV's for the
last 10 years and wants to deliver something more complete. I don't want to
spend a lot of my client's money on packages.

The assumption is that the users are using Excel. I've taken some other
advice on this forum to generate HTML which has had some success but is
limited in ease of adding fields or making changes. Perhaps this is my
opportunity to get into XML.

Thanks
Mark Johnson
- Original Message -
From: "Tony Gravagno" <[EMAIL PROTECTED]>
To: 
Sent: Sunday, October 23, 2005 5:46 PM
Subject: RE: [U2] [UV][OT]Embed command in CSV file? [ad]


> Barry Brevik wrote:
> > ...does anyone know if it is possible to embed some kind
> > of command in a CSV file that will get Excel to autofit
> > those rows automatically?
>
> The DIY solution is to use XML, for which there are examples around the
> Net.  It's always amazed me that most IT people think that a plain CSV is
> an adequate deliverable when users want "Excel".  End-users often spend
> hours to days per month, reformatting data delivered like this, rather
than
> making a request to IT for something more useful.  I think there is some
> unstated belief by end-users that IT _can't_ create anything more
> sophisticated than a CSV, so they often don't bother to ask - it's one of
> those self-fulfilling situations that people assume won't change so they
> don't ask and then things never change.  Anyway, I'm glad to see people
> here looking for something a little more professional and I encourage
> everyone to check with your C-level management or other hardcore Excel
> users about what they _really_ need from Excel, including multiple sheets
> in a workbook, charts, highlighted data, and dynamic updates from live
> databases (including MITS cubes, etc).
>
> Seeing there are no other definitive solutions presented in this thread...
> The problem described is exactly the problem solved with NebulAnalysis:
> http://Nebula-RnD.com/products/analysis.htm
> NebulAnalysis and other MS Office integration products were written a few
> years ago.  Unfortunately there was only a small trickle of demand so we
> are no longer "actively" offering them.  For some reason over the last few
> months a lot of people are looking to control Excel from MV so I might
> bring it back based on demand and available time.
> Please have a look at the audio/video demo here:
> http://Nebula-RnD.com/demos/nebulanalysis/
> If you like what you see I may port this to U2 and give it some new life.
> While you're on the site, check out NebulaManager to see what's possible
> with Outlook - that's another one that I'd like to bring back.
> http://nebula-rnd.com/products/manager.htm
>
> I have a lot of experience with the internals of all of the Microsoft
> Office applications, and intend to continue development with Office 12 and
> the MS Office System.  Nebula R&D is growing and now has a team of U2
> professionals who can do this sort of work.  So if you need to get info to
> or from any Office product, feel free to ask about what's possible.
>
> Tony Gravagno
> Nebula Research and Development
> TG@ removethisNebula-RnD.com
> (We just posted a major website update with completely reworked pages,
lots
> of new content, and a completely new strategic message.  Please feel free
> to browse the site, comment, ask questions, etc. - Thanks!)
> ---
> u2-users mailing list
> u2-users@listserver.u2ug.org
> To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] [UV][OT]Embed command in CSV file? [ad]

2005-10-23 Thread Tony Gravagno
Barry Brevik wrote:
> ...does anyone know if it is possible to embed some kind
> of command in a CSV file that will get Excel to autofit
> those rows automatically? 

The DIY solution is to use XML, for which there are examples around the
Net.  It's always amazed me that most IT people think that a plain CSV is
an adequate deliverable when users want "Excel".  End-users often spend
hours to days per month, reformatting data delivered like this, rather than
making a request to IT for something more useful.  I think there is some
unstated belief by end-users that IT _can't_ create anything more
sophisticated than a CSV, so they often don't bother to ask - it's one of
those self-fulfilling situations that people assume won't change so they
don't ask and then things never change.  Anyway, I'm glad to see people
here looking for something a little more professional and I encourage
everyone to check with your C-level management or other hardcore Excel
users about what they _really_ need from Excel, including multiple sheets
in a workbook, charts, highlighted data, and dynamic updates from live
databases (including MITS cubes, etc).

Seeing there are no other definitive solutions presented in this thread...
The problem described is exactly the problem solved with NebulAnalysis:
http://Nebula-RnD.com/products/analysis.htm
NebulAnalysis and other MS Office integration products were written a few
years ago.  Unfortunately there was only a small trickle of demand so we
are no longer "actively" offering them.  For some reason over the last few
months a lot of people are looking to control Excel from MV so I might
bring it back based on demand and available time.
Please have a look at the audio/video demo here:
http://Nebula-RnD.com/demos/nebulanalysis/
If you like what you see I may port this to U2 and give it some new life.
While you're on the site, check out NebulaManager to see what's possible
with Outlook - that's another one that I'd like to bring back.
http://nebula-rnd.com/products/manager.htm

I have a lot of experience with the internals of all of the Microsoft
Office applications, and intend to continue development with Office 12 and
the MS Office System.  Nebula R&D is growing and now has a team of U2
professionals who can do this sort of work.  So if you need to get info to
or from any Office product, feel free to ask about what's possible.

Tony Gravagno
Nebula Research and Development
TG@ removethisNebula-RnD.com
(We just posted a major website update with completely reworked pages, lots
of new content, and a completely new strategic message.  Please feel free
to browse the site, comment, ask questions, etc. - Thanks!)
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] U2 Universe Replication

2005-10-23 Thread John Jenkins
Check your VOC file is clean - no bad file pointers etc. UniVerse
replication requires that the system is pristine.

Otherwise - is there any reason to think you might have had an RPC timeout? 

When I set up replication I usually set up a brand new account for each
replication group (logical grouping - UniData replication *does* have this
as a positive replication property). Then put file pointers in the account
and replicate from there - no one is even allowed to *think* about putting
other stuff in this account.

Remember that all published and subscribed files on a system are tied to the
UVDRPUB and UVDRSUB files (and then these link in with other UVDR
files). Once you set this up you need to make sure you include these files
in any backup (just include UV). Also remember that replicated files have a
signature written in their header that ties in with these specific UVDRxxx
files and you need to be careful if you are moving FILES or ACCOUNTS from
one system to another.

Regards

JayJay

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Mark Warner
Sent: 22 October 2005 21:47
To: u2-users@listserver.u2ug.org
Subject: [U2] U2 Universe Replication

Hi all.

 

I'm trying to get data replication to work on Universe 10.0.10 and I'm not
having much luck.   When I try and select accounts/files to publish I get an
error which states:  "RPC Call Error - The Subroutine Failed to Complete
Successfully".  

 

Does anyone have any idea what may be causing this?

 

Thanks.

Mark Warner
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/