Quantcast
Channel: IIUG Forum: IDS Forum
Browsing all 9843 articles
Browse latest View live
↧

Column alias having special character

Hi, I have a requirement of using special character to column alias, this query will be executed from application written in ESQL/C and DB version is Informix 12.10 /11.70 SELECT a.col1 AS a.col1...

View Article


Re: Column alias having special character

Correct Syntax SELECT a.col1 col1 ,b.col2 col2 from tab1 a , tab2 b where a.col1= b.col2 Thanks,, Amitava "PRADEEP KUMAR"<pkyadav1@hotmail.com> Sent by: ids-bounces@iiug.org 05/08/2014 12:19 PM...

View Article


Re: Column alias having special character

Hi Amitava , Thanks for your response. In fact the requirement is to keep the table alias ( a.col) also in AS clause .. Thanks Pradeep...

View Article

Re: Column alias having special character

in that case SELECT a.col1 "a.col1" ,b.col2 "b.col2" from tab1 a , tab2 b where a.col1= b.col2 Thanks,, Amitava Chakraborty ISA Leader - IBM Informix , DB2-SAP , IM-ASL IBM India PVT LTD. Plot No...

View Article

Re: Column alias having special character

Hi Amitava We can use double quotes (") for SQL identfier when environment varibale DELIMIDENT is set to y. In our case, we are not setting it any value which means it's default value ( n). We don't...

View Article


Re: Column alias having special character

You cannot do this AFAIK. Art Art S. Kagel, Principal Consultant ASK Database Management Blog: http://informix-myview.blogspot.com/ Disclaimer: Please keep in mind that my own opinions are my own...

View Article

RE: PERL DBI data_sources and syscdr database

I'd suggest contacting the module author (John Leffler) directly. His contact info is listed on cpan (http://search.cpan.org/~johnl/). He posts here from time to time, but you're probably more likely...

View Article

create aggregate appears in dbschema output

Hi there, I've the following output when running dbschema on dataserver running on AIX box # dbschema -ss -d basename -t bkdetsws DBSCHEMA Schema Utility INFORMIX-SQL Version 9.40.FC9 Copyright IBM...

View Article


Re: runtime error on library

Hi Art, First, thanks for your reply. the source code is owned by another person and only the executable is available. Anyways, i will ask the programmer how it's been compiled. Thanks a lot, once...

View Article


Re: Additional info: Problem dropping dbspace

from what i can see, you have 2 offline database instances because the chunk was mistakenly allocated into the other instance. The only thing you can do is to to build the correct chunks for each db...

View Article

shmget ENOSPC Informix 11.70FC7 on Ubuntu 64 bit

Hello, sometimes connections to our IBM Informix Dynamic Server Version 11.70.FC7 hosted on Ubuntu 12.04.4 LTS (64 bit) in a virtual machine (8GB RAM) become very slow and clients get error messages...

View Article

Re: create aggregate appears in dbschema output

The simple answer is that userid f201466 created an aggregate named group_concat in your database. Art Art S. Kagel, Principal Consultant ASK Database Management Blog:...

View Article

Re: shmget ENOSPC Informix 11.70FC7 on Ubuntu ....

Try setting the memlock kernel parameter to unlimited. I have seen this problem when memlock is set to the default. Art Art S. Kagel, Principal Consultant ASK Database Management Blog:...

View Article


Re: shmget ENOSPC Informix 11.70FC7 on Ubuntu ....

Hi, "shmget: [ENOSPC][28]: key 52564864: The server could not allocate shared memory because an operating system limit was reached" So, what can we infer from this? 1. The number of shared memory...

View Article

Re: create aggregate appears in dbschema output

Hi Thanks a lot for your answer. Does this means any user defined object created in my database will have its ddl displayed in the dbschema output even if the user defined object is without report with...

View Article


Re: create aggregate appears in dbschema output

It depends on the object type. In the case of user defined aggregates and casts, IB yes they are always printed. Art Art S. Kagel, Principal Consultant ASK Database Management Blog:...

View Article

Re: shmget ENOSPC Informix 11.70FC7 on Ubuntu 64 b

Hello Art, thank you very much for your fast reply! The memlock default for Ubuntu seems to be 64 according to ulimit -l. I've set it to unlimited ( for informix and root ) as explained here:...

View Article


Re: Additional info: Problem dropping dbspace

Jack, Actually the instances are online, it is just the dbspaces assocaiated with the chunks that are offline. Unfortunately, there are no level 0 archives that included the spaces in question...

View Article

Re: create aggregate appears in dbschema output

Hi, Thanks a lot for your anwser. Have a good day. Best regards ******************************************************************************* To post a response via email (IIUG members only): 1....

View Article

Re: shmget ENOSPC Informix 11.70FC7 on Ubuntu 64 b

Hello, thank you very much for your fast reply! > Have a look at onstat -g seg and ipcs -ma. > A starting point would be to see what all the "V"'s add up to from onstat -g seg and set SHMVIRTSIZE...

View Article
Browsing all 9843 articles
Browse latest View live