Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

New to this(urgency needed please) 1

Status
Not open for further replies.

MrHelpMe

Technical User
May 1, 2001
203
CA
I have a view as follows

create view as holderaccountbalance

select pp.lastname, pp.firstname, ca.balance, ca.creditlimit, ca.currency, tx.product,
cx.number, ce.value, max(tx.i013_trxn_date)
from caccounts ca, cardx cx, people pp, cextension ce, ctransactions tx
where
ca.serno=cx.caccserno and
ca.serno=tx.caccserno and
ca.serno=ce.rowserno and
ce.fieldno in (select fieldno from extensionfields where
category like 'Company Industry Cod%') and
cx.peopleserno=pp.serno
group by
pp.lastname, pp.firstname, ca.balance, ca.creditlimit, cx.number, ce.value, ca.currency, tx.product
order by ce.value

I keep getting this error message: Need to specify view column names in the view definition. Any idea what this means.

Also, is there any graphical user interface that I can use(free GUI) to create views, SP etc for Informix. Your urgent help is great. Thanks
 
Hi,

Here are few more links for GUI tools which you may find useful. This list is not in any particular order.

Database Commander

SIIS Sarasoft Integrated Imaging System

Database Design Studio Lite

DB Commander 2000 PRO

Case Studio 2

Advanced Query Tool (ATQ)

DTM SQL Editor

Regards,
Shriyan

"You can achieve the most when you don't care who gets the credit"
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top