Sponsored Content
Top Forums UNIX for Dummies Questions & Answers WHERE statement similar to IDL Post 302221071 by fpmurphy on Sunday 3rd of August 2008 09:06:40 AM
Old 08-03-2008
2> /dev/null means that anything written to stderr by the ls(1) command (typically error messages such as could not find a matching file) is not displayed.

Yes this code works with 3 digit days.
 

8 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

compiling idl file on unix

hi i need to compile idl files to convert them to classes, on Unix platform. Please tell me how to compile these files & which commands are to be used for this purpose. Thanks & Regards (6 Replies)
Discussion started by: rochitsharma
6 Replies

2. Linux

'IDL:omg.org/CORBA/TRANSIENT:1.0' exception

Hi, We are working in a Linux client server environment ,where we have the CORBA running to facilitate the client server model.But here some time we are getting the system exception, ID 'IDL:omg.org/CORBA/TRANSIENT:1.0' OMG minor code (2), described as 'No usable profile in IOR.', ... (0 Replies)
Discussion started by: prasanta jena
0 Replies

3. Shell Programming and Scripting

How is use sselect statement o/p in insert statement.

Hi All, I am using Unix ksh script. I need to insert values to a table using the o/p from a slelect statement. Can anybody Help! My script looks like tihs. ---`sqlplus -s username/password@SID << EOF set heading off set feedback off set pages 0 insert into ${TB_NAME}_D... (2 Replies)
Discussion started by: nkosaraju
2 Replies

4. UNIX and Linux Applications

Parsing info from a text file into an IDL procedure

Hi, I hope this is appropriate for this forum. I have a text file (test.txt) that contains information that I would like to parse into an IDL procedure. Each line of the text file is either a number or a string, which will be a variable in my IDL procedure. Therefore I want to read each line... (1 Reply)
Discussion started by: msb65
1 Replies

5. Shell Programming and Scripting

IDL job doesn't work from crontab

I have made a script to execute an IDL routine with the purpose to plot data on a fixed time. The problem is that when I include this script in the crontab to run it every night, the IDL part doesn't work (the other commands, like getting data from the database, are carried out though). This... (4 Replies)
Discussion started by: SharkM
4 Replies

6. Programming

spectra flux-calibration using IDL

Hi, I am searching the web for documentations with tutorials for spectra flux calibration using IDL, does anyone know anything that can help me? Please help :D ---------- Post updated 07-11-09 at 05:38 AM ---------- Previous update was 07-10-09 at 10:46 AM ---------- Does the question make... (0 Replies)
Discussion started by: cosmologist
0 Replies

7. UNIX for Dummies Questions & Answers

Files into IDL directories

Ok so ive downloaded two files, and i need to save them into a directory that can be read in IDL. Can someone please remind me how to do this, like post the code that i need please? Many thanks (0 Replies)
Discussion started by: Benji.
0 Replies

8. Shell Programming and Scripting

Convert Update statement into Insert statement in UNIX using awk, sed....

Hi folks, I have a scenario to convert the update statements into insert statements using shell script (awk, sed...) or in database using regex. I have a bunch of update statements with all columns in a file which I need to convert into insert statements. UPDATE TABLE_A SET COL1=1 WHERE... (0 Replies)
Discussion started by: dev123
0 Replies
orber_tc(3erl)						     Erlang Module Definition						    orber_tc(3erl)

NAME
orber_tc - Help functions for IDL typecodes DESCRIPTION
This module contains some functions that gives support in creating IDL typecodes that can be used in for example the any types typecode field. For the simple types it is meaningless to use this API but the functions exist to get the interface complete. The type TC used below describes an IDL type and is a tuple according to the to the Erlang language mapping. EXPORTS
null() -> TC void() -> TC short() -> TC unsigned_short() -> TC long() -> TC unsigned_long() -> TC long_long() -> TC unsigned_long_long() -> TC wchar() -> TC float() -> TC double() -> TC boolean() -> TC char() -> TC octet() -> TC any() -> TC typecode() -> TC principal() -> TC These functions return the IDL typecodes for simple types. object_reference(Id, Name) -> TC Types Id = string() the repository ID Name = string() the type name of the object Function returns the IDL typecode for object_reference. struct(Id, Name, ElementList) -> TC Types Id = string() the repository ID Name = string() the type name of the struct ElementList = [{MemberName, TC}] a list of the struct elements MemberName = string() the element name Function returns the IDL typecode for struct. union(Id, Name, DiscrTC, Default, ElementList) -> TC Types Id = string() the repository ID Name = string() the type name of the union DiscrTC = TC the typecode for the unions discriminant Default = integer() a value that indicates which tuple in the element list that is default (value < 0 means no default) ElementList = [{Label, MemberName, TC}] a list of the union elements Label = term() the label value should be of the DiscrTC type MemberName = string() the element name Function returns the IDL typecode for union. enum(Id, Name, ElementList) -> TC Types Id = string() the repository ID Name = string() the type name of the enum ElementList = [MemberName] a list of the enums elements MemberName = string() the element name Function returns the IDL typecode for enum. string(Length) -> TC Types Length = integer() the length of the string (0 means unbounded) Function returns the IDL typecode for string. wstring(Length) -> TC Types Length = integer() the length of the wstring (0 means unbounded) Function returns the IDL typecode for wstring. fixed(Digits, Scale) -> TC Types Digits = Scale = integer() the digits and scale parameters of a Fixed type Function returns the IDL typecode for fixed. sequence(ElemTC, Length) -> TC Types ElemTC = TC the typecode for the sequence elements Length = integer() the length of the sequence (0 means unbounded) Function returns the IDL typecode for sequence. array(ElemTC, Length) -> TC Types ElemTC = TC the typecode for the array elements Length = integer() the length of the array Function returns the IDL typecode for array. alias(Id, Name, AliasTC) -> TC Types Id = string() the repository ID Name = string() the type name of the alias AliasTC = TC the typecode for the type which the alias refer to Function returns the IDL typecode for alias. exception(Id, Name, ElementList) -> TC Types Id = string() the repository ID Name = string() the type name of the exception ElementList = [{MemberName, TC}] a list of the exception elements MemberName = string() the element name Function returns the IDL typecode for exception. get_tc(Object) -> TC get_tc(Id) -> TC Types Object = record() an IDL specified struct, union or exception Id = string() the repository ID If the get_tc/1 gets a record that is and IDL specified struct, union or exception as a parameter it returns the typecode. If the parameter is a repository ID it uses the Interface Repository to get the typecode. check_tc(TC) -> boolean() Function checks the syntax of an IDL typecode. Ericsson AB orber 3.6.20 orber_tc(3erl)
All times are GMT -4. The time now is 09:37 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy