RE: [U2] Universe failure - why?

2008-01-25 Thread Oaks, Harold
Thanks to all who helped.  fixtool at unix level has worked very well.
Harold Oaks
Clark County 

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Bernard Lubin
Sent: Tuesday, January 22, 2008 4:57 PM
To: u2-users@listserver.u2ug.org
Subject: RE: [U2] Universe failure - why?

This could be happening because there is an error on the file or on one
of the associated indices.  We had that error a couple of times. To fix,
we either rebuilt the indices or ran fixtool (at unix) to check if the
file needs to be fixed.  We also had that error if there is something
wrong with the key (eg control character or @VM, @SM)

Rgds

Bernard Lubin
Development Department
Reynolds and Reynolds
-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Oaks, Harold
Sent: Wednesday, 23 January 2008 10:39 AM
To: u2-users@listserver.u2ug.org
Subject: [U2] Universe failure - why?

Can anybody help determine what to do about this error?

Hashdata = 490657843
Infohtype32=20, infosplit32=80, infomerge32=50 Infocurmod=80,
infofilesp=66D80, infolargerec=651 Infonsplit=80, infobasemod=80

Contact Customer Support Immediately!!!
CRITICAL ERROR! Notify the system administrator.
Abnormal termination of Universe.
Fault type is 10.  Layer type is BASIC run machine.
Fault occurred in BASIC program APPRISSP at address 121e.
.profile[20]: 11947 Memory fault


The offending instruction in the program APPRISSP is just a write of a
record to a file.  How does this make Universe blow up?

Any help appreciated.


Harold D. Oaks
Sr. Analyst/Programmer
Office of the Budget and Information Systems Clark County, Washington
ph: (360) 397-6121 x4132
fax: (360) 397-2342
---
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/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


[U2] UD - UniAdmin

2008-01-25 Thread Bill Haskett
I've installed UD at a client's site.  They have a domain and the UD server is
separate.  I'm able to connect via UniAdmin and telnet. I'm able to update 
files and
move files with no problem.  I have several accounts set up in UD.ACCOUNTs but 
they
don't  show up in the "Accounts" list (all that shows up is "demo").  When I 
try to
add a user I get a "Failed to save changes on UniData Telnet Server" error.  
Also,
when I view the "Network Services" nothing shows up.
 
I'm a domain administrator but when I look at the directories I notice that the
machine's administrators have full access.  Doesn't the domain administrator 
have
access to everything?  Can anyone tell me what basics I missed?
 
Thanks,
 
Bill Haskett
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


Re: [U2] [UD] problem calling program from shell script

2008-01-25 Thread bradley . schrag
>How is MT.PROC starting MT.WATCH?

I wish I knew. That's part of my problem since both MT.PROC and MT.WATCH
are 3rd party software.

One more clue that may make your question irrelevant: in a successful,
non-scripted run, the phantoms start up before MT.WATCH starts displaying
status. This might mean that the issue lies in MT.PROC instead.

I've started looking at @USER.TYPE. Is there any UniData reason @USER.TYPE
= 2 would cause a phantom not to start? My tests suggest No, but would like
confirmation.

Brad


U.S. BANCORP made the following annotations
-
Electronic Privacy Notice. This e-mail, and any attachments, contains 
information that is, or may be, covered by electronic communications privacy 
laws, and is also confidential and proprietary in nature. If you are not the 
intended recipient, please be advised that you are legally prohibited from 
retaining, using, copying, distributing, or otherwise disclosing this 
information in any manner. Instead, please reply to the sender that you have 
received this communication in error, and then immediately delete it. Thank you 
in advance for your cooperation.



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


RE: [U2] Execute Windows Script

2008-01-25 Thread Brutzman, Bill
That my name is "Bill" has not helped me with Windows scripting;  
I gave up on it several months ago.

The following script is intended to copy files from one drive to another.  
Upon encountering a permissions issue, the script stops dead.

I expect that the MS way to accomplish these sorts of tasks is via Visual
Studio...
featuring bona fide exception handling.

*

Const OverWriteFiles = True

startTime = Timer
wScript.Echo "Beginning S Drive"
strSource = "S:\Info Tech"
strDestination = "C:\BackUp"

Set objFSO = CreateObject ("scripting.fileSystemObject")
objFSO.CopyFolder strSource, strDestination , OverWriteFiles

endTime = Timer
'wScript.Echo "Ending Copy... S: Drive... It took : " & _
Round(Endtime-starttime) & "seconds to copy"

*-

--Bill

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Brian Leach
Sent: Friday, January 25, 2008 4:02 AM
To: u2-users@listserver.u2ug.org
Subject: RE: [U2] Execute Windows Script


JayJay

This is pet topic of mine: for some reason so many Windows administrators
are completely unaware that Windows has truly excellent scripting facilities
- particularly those who migrate from UNIX and complain about the lack of
shell scripting.

One great thing is that you can instantiate UniObjects connections from
within the scripting host, which means you can perform many U2 sysadmin
tasks far more neatly than trying to directly execute UniVerse/UniData
processes with commands passed on the command line.

Just one point - if you want to shell out a scripting file via the DOS /C
switch, you probably need to specify the command host: cscript.exe
myscript.vbs

For those who don't know, Windows has two scripting hosts: cscript and
wscript. They both run exactly the same scripts, which can be either
javascript or vbscript: but wscript pops up message boxes for feedback and
cscript is console based. You need to make sure you run cscript if you are
automating.

I wrote an article about UniObjects and Windows Scripting which should still
be lurking on the U2UG knowledge base if anyone wants to follow up.

Brian


> -Original Message-
> From: [EMAIL PROTECTED] 
> [mailto:[EMAIL PROTECTED] On Behalf Of John Jenkins
> Sent: 24 January 2008 22:46
> To: u2-users@listserver.u2ug.org
> Subject: RE: [U2] Execute Windows Script
> 
> Windows "prefers" scripting language nowadays to BAT files. 
> There is an article in the IBM Knowledge Base I think in 
> building these for some specific activities. You could use it 
> as the equivalent of the Unix "at" job queue I am sure.
> 
> Something like:
> MYCMD.VBS
> --
> Set ShellQueue = WScript.CreateObject("WScript.shell")
> ShellQueue.run "%comspec% /c c:\joblists\executable_here",O 
> Set ShellQueue - Nothing
> 
> Save this as with a VBS file extension and add it to the 
> Windows task scheduler
> 
> (any takers?)
> 
> http://www.microsoft.com/resources/documentation/windows/xp/al
> l/proddocs/en-
> us/batch.mspx
> 
> http://technet.microsoft.com/en-gb/library/bb490887.aspx
> 
> 
> 
> Regards
> 
> JayJay
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/

[demime 1.01d removed an attachment of type application/msword which had a name 
of Script Error Message.doc]
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] IBM increasing work force for U2

2008-01-25 Thread George R Smith
But what does the "can reside in any East Coast City" mean.
grs

> -Original Message-
> From: [EMAIL PROTECTED] [mailto:owner-u2-
> [EMAIL PROTECTED] On Behalf Of Jerry Banker
> Sent: Friday, January 25, 2008 8:09 AM
> To: u2-users@listserver.u2ug.org
> Subject: [U2] IBM increasing work force for U2
> 
> Has anyone noticed that IMB is increasing their number technical
> marketing IT specialists for U2? A good, very good, sign.
> 
> 
> 
> http://hotjobs.yahoo.com/job-search?locations=&industry=&kw=Universe+Uni
> data
> 
> 
> 
> 
> 
> Jerry Banker
> 
> Senior Programmer Analyst
> 
> IBM Certified Solutions Expert
> 
> Affiliated Acceptance Corp
> 
> Sunrise Beach, MO
> 
> 1-800-233-8483
> 
> www.affiliated.org 
> ---
> 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] Universe 20.1 itype perf enhancer

2008-01-25 Thread Kevin King
On Jan 24, 2008 3:31 PM, Bernard Lubin <[EMAIL PROTECTED]> wrote:
> As the common block remains alive for the duration of your login, you will
> also need to take into account cross-logging across multiple accounts.

Oh yes, absolutely.  Essential note here!
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


Re: [U2] [UD] problem calling program from shell script

2008-01-25 Thread Kevin King
How is MT.PROC starting MT.WATCH?
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


Re: [U2] WITH Clause

2008-01-25 Thread MAJ Programming
Sidebar solution for broader MV systems.

You can create a single dict item representing each pair and AND them. Many
MV systems do not support parenthesis in the TCL statement as they typically
indicate options.

My (1) cent
Mark Johnson
- Original Message -
From: "Martin Phillips" <[EMAIL PROTECTED]>
To: 
Sent: Thursday, January 24, 2008 3:21 AM
Subject: Re: [U2] WITH Clause


> Hi Charles,
>
> > Can parenthesis be used to group WITH statements?  I am modifying a
> > humongous SORT statement with many WITH clauses and would like to group
> > them.  If so, what are the rules?
> >
> > WITH (COND1 OR COND2) AND WITH (COND3 OR COND4) ?
> >
> > (WITH COND1 OR WITH COND2) AND (WITH COND3 OR WITH COND4) ?
>
> Preferably, omit the repeated WITH so that the second example above
becomes
>WITH (COND1 OR COND2) AND (COND3 OR COND4)
>
> The semantics of multiple WITH clauses is different depending on the
> UniVerse flavour in use.
>
>
> Martin Phillips
> Ladybridge Systems Ltd
> 17b Coldstream Lane, Hardingstone, Northampton, NN4 6DB
> +44-(0)1604-709200
> ---
> 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/


[U2] IBM increasing work force for U2

2008-01-25 Thread Jerry Banker
Has anyone noticed that IMB is increasing their number technical
marketing IT specialists for U2? A good, very good, sign.



http://hotjobs.yahoo.com/job-search?locations=&industry=&kw=Universe+Uni
data





Jerry Banker

Senior Programmer Analyst

IBM Certified Solutions Expert

Affiliated Acceptance Corp

Sunrise Beach, MO

1-800-233-8483

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


[U2] David Beckwith/WA/QBE/Insurance is out of the office.

2008-01-25 Thread David Beckwith
I will be out of the office starting  25/01/2008 and will not return until
19/02/2008.

I will respond to your message when I return.

- 
IMPORTANT NOTICE : The information in this email is confidential and may also 
be privileged. If you are not the intended recipient, any use or dissemination 
of the information and any disclosure or copying of this email is unauthorised 
and strictly prohibited. If you have received this email in error, please 
promptly inform us by reply email or telephone. You should also delete this 
email and destroy any hard copies produced.
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Execute Windows Script

2008-01-25 Thread Brian Leach
JayJay

This is pet topic of mine: for some reason so many Windows administrators
are completely unaware that Windows has truly excellent scripting facilities
- particularly those who migrate from UNIX and complain about the lack of
shell scripting.

One great thing is that you can instantiate UniObjects connections from
within the scripting host, which means you can perform many U2 sysadmin
tasks far more neatly than trying to directly execute UniVerse/UniData
processes with commands passed on the command line.

Just one point - if you want to shell out a scripting file via the DOS /C
switch, you probably need to specify the command host: cscript.exe
myscript.vbs

For those who don't know, Windows has two scripting hosts: cscript and
wscript. They both run exactly the same scripts, which can be either
javascript or vbscript: but wscript pops up message boxes for feedback and
cscript is console based. You need to make sure you run cscript if you are
automating.

I wrote an article about UniObjects and Windows Scripting which should still
be lurking on the U2UG knowledge base if anyone wants to follow up.

Brian


> -Original Message-
> From: [EMAIL PROTECTED] 
> [mailto:[EMAIL PROTECTED] On Behalf Of John Jenkins
> Sent: 24 January 2008 22:46
> To: u2-users@listserver.u2ug.org
> Subject: RE: [U2] Execute Windows Script
> 
> Windows "prefers" scripting language nowadays to BAT files. 
> There is an article in the IBM Knowledge Base I think in 
> building these for some specific activities. You could use it 
> as the equivalent of the Unix "at" job queue I am sure.
> 
> Something like:
> MYCMD.VBS
> --
> Set ShellQueue = WScript.CreateObject("WScript.shell")
> ShellQueue.run "%comspec% /c c:\joblists\executable_here",O 
> Set ShellQueue - Nothing
> 
> Save this as with a VBS file extension and add it to the 
> Windows task scheduler
> 
> (any takers?)
> 
> http://www.microsoft.com/resources/documentation/windows/xp/al
> l/proddocs/en-
> us/batch.mspx
> 
> http://technet.microsoft.com/en-gb/library/bb490887.aspx
> 
> 
> 
> Regards
> 
> JayJay
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/