Sql decimal datatype

I'm using labview 7.1 with the database connectivity toolkit to interact with a sql server.  One column is of the datatype float, but when I send 0.95, it stores 0.94999999.  I've read about this before, but trying to use numeric or decimal causes a different problem.  When the column is of one of these datatypes and I do a fetch of the data, nothing in that column comes back.  I'm leaving the data as a variant in labview, so it isn't a conversion issue.  I get just a blank variant box.  It works only for float.  And the other columns all work fine. 
Are decimal and numeric types not supported by labview, and if so how do I get around the inaccuracy of float datatypes?

Fractional floating point numbers can often not be represented exactly in binary, even if they are nice and round in decimal.
0.95 for example is actually 0.949999999999999955(DBL) or 0.9499999880791(SGL). There is nothing wrong with that. You simply need to set your display to only show the desired number of significant digits.
ejoseph wrote:
Are decimal and numeric types not supported by labview, and if so how do I get around the inaccuracy of float datatypes?
There is no real inaccuracy. The difference between 0.94999999 and 0.95 is 0.00000001 or about 1 in 100000000! (This is just the diplayed part, the difference in real life is even less. Is your number really more precise that 52bits? (or 23bits for SGL).
LabVIEW Champion . Do more with less code and in less time .

Similar Messages

  • ADO and function that returns PL/SQL boolean datatype

    How to get PL/SQL boolean datatype using ADO?
    DBMS_SESSION.IS_SESSION_ALIVE function returns boolean.
    This code raises error with very strange description:
    Dim cmd As New ADODB.Command
    str = "{? = call DBMS_SESSION.IS_SESSION_ALIVE(""000011112222"" )}"
    With cmd
    Set .ActiveConnection = objDB.Connection
    .CommandText = str
    .CommandType = adCmdText
    .Parameters.Append .CreateParameter("Return", adBoolean, adParamOutput)
    End With
    cmd.Execute
    ? err.Source
    OraOLEDB
    ? err.Number
    -2147467259
    ? err.Description
    4ûC
    Thanks for any help.

    Mikhail,
    OraOLEDB does not support PL/SQL boolean type.
    Sinclair

  • BIG DECIMAL DATATYPE ISSUE IN JDEV 10.1.3.2 ADF BC

    I am developing a small application on mysql db. in one of my entry screens i have to input numeric data upto a 4 decimal places.
    My project settings are SQL92 and JAVA types.
    My dataype for the numeric field in db is double(17,4) at entity level i have kept it to bigdecimal.
    When i enter something as 1200.1223 and save it . it saves correctly but when i modify the same record i get 1200.1222222292222291 value in my input box.
    can any body help what i am doing wrong?
    regards
    Amit

    Pravin
    We dont get number datatype if you have SQL92 selected as SQL Flavour. So i dont think this would help. SQL TYPE Map is JAVA basically in my project. Do you want me to import some of oracle.jbo.domains specifically or something else you want me to do
    regards
    Amit

  • Conversion of Decimal datatype

    Post Author: tanuja.patankar
    CA Forum: Data Integration
    Hi Friends,
    I am pretty new to DI 11.7 but I am experiencing a funny issue.I have a calculation in my query transform which has A/B where A is a decimal(10,2) and B is int .The output calculation column does not retain the decimal numbers .I tried the following :-
    1.Made the calculated collumn as a decimal(10,2), it didnt work.
    2.Made the collumn B to a decimal(10,2) it didnt work.
    3.Used To_char to convert the calculation in char to retain the decimal numbers, it didnt work.
    4.Used concatenation operator making the calculated column as a varchar:-'To_char(A/B)||'.'||To_Char(Mod(A,B)),it didnt work.
    5.Tried To_Decimal and to_Decimal_ext, it didnt work
    6.Tried using Cast() function , it didnt work too.
    Hence if the output of the calculation is 122.34 i would always end up getting 122.00 or 122.
    Please help and let me know if there is anyother way to go about it.
    Best Regards,
    Tanuja

    Post Author: bbatenburg
    CA Forum: Data Integration
    It seems you tried quite a lot. For problem solving you can use the validation is_valid_decimal/ is_valid_int. This should help you pinpointing the location of the problem. I always them when i encounter problems with datatypes.

  • Sybase ODBC driver - numeric or decimal datatype problem

    Hello!
    I have Sybase Adaptive Server Enterprise 15.0.2 and Oracle 10.2.0 ("show release" in SQL*plus prints 1002000100) on the same machine (OS = Windows XP, name = Workstation). I wanna load correct information from the table in Sybase via Oracle database link.
    Well, I've edited tnsnames.ora, listener.ora. Also I've created initmysybase.ora in hs\admin directory. And, of course, set up DSN (using Sybase ODBC driver) via odbcad32.exe - and named it "mysybase".
    Table ("test", user = guest) definition in Sybase is:
    column "id" - int, column "data_num" - numeric(10, 5), column "data_dec" - decimal(10, 5). And it's content is: (1, 1.12345, 5.54321). I've set up a database link.
    My problem is that whenever I do the SELECT statement (SELECT * FROM "guest.test"@mysybase) I get 0 (zero) for both data_num and data_dec columns.
    Status of investigation:
    The "describe" command in SQL*plus returns:
    id NOT NULL NUMBER(10)
    data_num NUMBER(10,5)
    data_dec NUMBER(10,5)
    UPDATE statement works perfectly.
    I've downloaded a trial version of ODBC drivers from www.datadirect.com and all works fine.
    So, I believe that maybe there are some bugs in ODBC driver from Sybase, or maybe I should configure smth.
    My initmysybase.ora:
    HS_FDS_CONNECT_INFO = mysybase
    # HS_FDS_TRACE_LEVEL = DEBUG
    HS_FDS_TRACE_LEVEL = ON
    HS_NLS_NUMERIC_CHARACTER = ",."
    HS_LANGUAGE = American
    tnsnames.ora:
    mysybase =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = WORKSTATION)(PORT = 1521))
    (CONNECT_DATA =
    (SID = mysybase)
    (HS = OK)
    listener.ora:
    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1))
    (ADDRESS = (PROTOCOL = TCP)(HOST = WORKSTATION)(PORT = 1521))
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (GLOBAL_DBNAME = mysybase)
    (SID_NAME = mysybase)
    (ORACLE_HOME = C:\oracle\product\10.2.0\db_1)
    (PROGRAM = hsodbc)
    So, maybe anybody know how to solve this problem?
    Thanks,
    Yury

    I've played with HS_LANGUAGE option but without success.
    Well, this is the export from the registry:
    Windows Registry Editor Version 5.00
    [HKEY_LOCAL_MACHINE\SOFTWARE\ODBC\ODBC.INI\mysybase]
    "Driver"="C:\\sybase\\DataAccess\\ODBC\\dll\\sybdrvodb.dll"
    "dsprincipal"=""
    "secondaryport"=""
    "logintimeout"="10"
    "dsn"="mysybase"
    "restrictmaximumpacketsize"="0"
    "initializationstring"=""
    "database"=""
    "packetsize"=""
    "ignoreerrorsifrspending"="0"
    "dsservicename"=""
    "server"="WORKSTATION"
    "serverinitiatedtransactions"="1"
    "quotedidentifier"="0"
    "charset"="ServerDefault"
    "ansinull"="0"
    "encryptpassword"="0"
    "fetcharraysize"="25"
    "language"=""
    "buffercachesize"="20"
    "trustedfile"=""
    "port"="5000"
    "userid"="sa"
    "hasession"="0"
    "tightlycoupledtransaction"="0"
    "serverprincipal"=""
    "enableserverpacketsize"="1"
    "applicationname"=""
    "description"=""
    "dsurl"=""
    "userprincipal"=""
    "dynamicprepare"="0"
    "crc"="0"
    "secondaryserver"=""
    "textsize"=""
    "clienthostproc"=""
    "clienthostname"=""
    "codepagetype"="oem"

  • HS - link between ORACE and MS SQL - decimal numbers not transfered

    Hello folks,
    I have defined a HS connection using Windows ODBC Data Source Administrator between MS SQL database and Oracle.
    When I query data from ORACLE database from MS SQL table using HS database link, a returned numbers which should be decimal are truncated and returned as whole numbers!
    Any idea what settings is missing, or incorrect?
    Many thanks,
    Tomas
    initHELIOSSRO.ora
    # This is a sample agent init file that contains the HS parameters that are
    # needed for the Database Gateway for ODBC
    # HS init parameters
    HS_FDS_CONNECT_INFO = HELIOSSRO
    HS_LANGUAGE="CZECH_CZECH REPUBLIC.AL32UTF8"
    # HS_FDS_TRACE_LEVEL
    # Specifies whether error tracing is turned on or off for gateway connectivity.
    # The following values are valid:
    #   OFF disables the tracing of error messages.
    #   ON enables the tracing of error messages that occur when you encounter problems. The results are written by default to a gateway log file in LOG directory where the gateway is installed.
    #   DEBUG enables the tracing of detailed error messages that can be used for debugging.
    HS_FDS_TRACE_LEVEL= ON
    HS_KEEP_REMOTE_COLUMN_SIZE=ALL
    HS_NLS_NCHAR=UCS2
    # Environment variables required for the non-Oracle system
    #set <envvar>=<value>

    Hi Tomas,
         The usual reason that you loose the decimal part of the numbers is a difference between the territory settings between the source and target database.
    You have set -
    HS_LANGUAGE="CZECH_CZECH REPUBLIC.AL32UTF8"
    and this expects the decimal separator to be a comma - , - but if the source is using a full stop - . - then this will cause the decimal part to be lost.
    You should set the territory part of HS_LANGUAGE to match the setting used by the source database.
    If it uses a full stop then set it to something like -
    HS_LANGUAGE="AMERICAN_AMERICA.AL32UTF8"
    and try the select again from a new SQLPLUS session.
    If you have access to My Oracle Support have a look at these notes -
    NLS Guide for Generic Connectivity and Gateways (Doc ID 230239.1)
    Gateway and Decimal Digits (Doc ID 1453148.1)
    Regards,
    Mike

  • Decimal Datatype

    Hi ,
    I have a table in which one column is of datatype is number(13,5) if i store 35.99 it is retrieved in the same way but if i store 35.00 i retrieve it as 35.

    Manaat wrote:
    Hi ,
    I have a table in which one column is of datatype is number(13,5) if i store 35.99 it is retrieved in the same way but if i store 35.00 i retrieve it as 35.That's the way it works. 35.00 really has no decimal precision, so why store it?
    If you need to DISPLAY the data in that format, query it like ...
    TUBBY_TUBBZ?select to_char(some_number, 'fm99.00')
      2  from
      3  (
      4     select 9 as some_number
      5     from dual
      6  );
    TO_CHAR(SOME_NUMBE
    9.00
    1 row selected.
    Elapsed: 00:00:00.01
    TUBBY_TUBBZ?

  • Create a table in SQL with datatype equivalent to LongBlob

    I have a mySQL or phpMyadmin table (nor sure) (with longblob fields) that I want to convert to SQL Server.
    Here is a link to a Rar with two files, the 'ORIGINAL CODE.sql' is the original code sample and the 'NEW_SQL_CODE.sql' is the code I am writing in SQL to create a database.
    Click to download the two files.
    I fail to make the insert in the 'NEW_SQL_CODE.sql', it says (translated from spanish) something like "The binary data will be truncated"
    INSERT INTO inmuebles_fotos (ci_inm, pos, foto, mini, comentario, inet, impr_cartel, impr_visita) VALUES
    (6, 0, 0xffd8ffe000104a46494600010100000100010...etc...
    I don’t know how if I have defined the wrong data type (image) equivalent to the MySQL LongBlob. All I want to do is to make that insert in SQL and save that image as jpg if possible. I don't know if it's not posible in SQL and can only
    be done in MySQL.
    Thanks for any help.

    The original table is not mine; I am just trying to save the images as .jpg in hard drive.
    Here is the original table I have that has 500Mb in pictures, in the sample there is only 1 picture:
    CREATE TABLE IF NOT EXISTS `inmuebles_fotos` (
    `ci_inm` int(10) unsigned DEFAULT NULL,
    `pos` smallint(6) DEFAULT NULL,
    `foto` longblob,
    `mini` longblob,
    `comentario` varchar(100) DEFAULT NULL,
    `inet` tinyint(3) unsigned DEFAULT '0',
    `impr_cartel` smallint(6) DEFAULT '0',
    `impr_visita` smallint(6) DEFAULT '0'
    ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
    And here is the equivalent table in SQL that I am trying to create to import al registers so I can save the pictures from SQL Server that is what we use here.
    CREATE TABLE [dbo].[inmuebles_fotos2](
    [ci_inm] [int] NULL,
    [pos] [int] NULL,
    [foto] [image] NULL,
    [mini] [image] NULL,
    [comentario] [varchar](1) NULL,
    [inet] [int] NULL,
    [impr_cartel] [int] NULL,
    [impr_visita] [int] NULL
    Sorry for the trouble, I am trying everything I get my hands on until I get to save those images in “0x1234567890ABCDE…….” Format.
    I'll try anything you sugest me but I have only use SQL Server so that's why I'm trying this road first.
    Thanks for your help.

  • XSL transform question from XML date datatype to SQL date datatype

    Just to give an idea, I am reading some employee information in a CSV format and I have created the fileadapter to read it and parse it into coherent information where each comma separated value corresponds to a column in an employee table. One of the columns is of the date object in the database.
    So my my variable is created with a list of employees and then fed into the invoke that calls a dbadapter that does the insert. I am using a transformation to get the values from one variable into the other simply because of namespace conflicts. However the xml date will not match the sql date object as to be expected...but how do I work around it? I have a few ideas but I am not sure they are worth mentioning.
    Any suggestions?

    @@Version : ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    Microsoft SQL Server 2012 - 11.0.5058.0 (X64)
        May 14 2014 18:34:29
        Copyright (c) Microsoft Corporation
        Developer Edition (64-bit) on Windows NT 6.2 <X64> (Build 9200: ) (Hypervisor)
    (1 row(s) affected)
    Compatibility level is set to 110 .
    One of the limitation states - XML columns with a depth of more than 128 nested nodes
    How do i verify this ? Thanks .
    Rajkumar Yelugu

  • Sql STORAGE DATATYPES

    Hi There Guys!
    I need a simple information about storage in oracle... what is the size of all the datatypes which there are in oracle?
    The problem is this... I have to create a tablespace, so I need its storage, but I don't know what is the size of the single datatypes, and the documentation of the 11g version (that is what I need) tells a few information about it...
    Thanks for all!!
    See you soon!

    No, no the problem is another, cause I think that is not important trought what I want to populate these datatypes, but what is the real size that characterizes theme:if I write varchar2(1), oracle allocates 1 byte, 2 byte... how much bytes it allocates? This is the problem! XD
    In this way, if I have a table composed by two records: Name, Sourname, if I know what is the size of one varchar2 I can calcoulate all the size of the table.

  • Pl-sql composite datatype-record problem!!

    Hello
    I am using hr schema tables and I intend to display first_name,last_name and hire date of President.
    When I am doing join I am facing errors
    following is my code
    /* Formatted on 2009/11/23 15:19 (Formatter Plus v4.8.8) */
    DECLARE
    e1 hr.employees%ROWTYPE;
    BEGIN
    SELECT *
    INTO e1
    FROM hr.employees, hr.jobs
    WHERE hr.employees.job_id = hr.jobs.job_id
    AND hr.jobs.job_title = 'President';
    DBMS_OUTPUT.put_line (e1.first_name);
    DBMS_OUTPUT.put_line (e1.last_name);
    DBMS_OUTPUT.put_line (e1.hire_date);
    END;
    and following are the errors
    ORA-06550: line 7, column 6:
    PL/SQL: ORA-00947: not enough values
    ORA-06550: line 5, column 4:
    PL/SQL: SQL Statement ignored
    Please help
    Thank You

    Hello,
    Instead of using
    SELECT *you need to select the right columns that HR.EMPLOYEES consist of if you want to use the rowtype or declare 3 variables.
    And always use proper aliases.
    Another 'dirty' way, without any declarations at all:
    hoek&XE> begin
      2    for e1 in ( select e.*
      3                from   hr.employees e
      4                ,      hr.jobs j
      5                where  e.job_id = j.job_id
      6                and    j.job_title = 'President'
      7              )
      8    loop
      9      dbms_output.put_line (e1.first_name);
    10      dbms_output.put_line (e1.last_name);
    11      dbms_output.put_line (e1.hire_date);
    12    end loop; 
    13  end;
    14  /
    Steven
    King
    17-06-1987 00:00:00

  • Pl sql invalid datatype error for table casting(PL/SQL: ORA-00902: invalid)

    See the code snippet -
    Create or Replace Package xyz.abc as
    TYPE rec_local is record of (primary_key emp.p_key%type, nam emp.name%type,addres emp.address%type);
    Type tab_local is Table of rec_local;
    Procedure exclude_pkey (tab1 IN tab_local );
    End xyz.abc
    Create or Replace Package Body xyz.abc as
    Procedure exclude_pkey (tab1 IN tab_local );
    Cursor cur is
    select primary_key
    from table(*cast(tab1 as tab_local *)))
    where primary_key NOT IN (select primary_key
    from emp)
    BEGIN
    END exclude_pkey ;
    End abc;
    I came to know the process that for query purpose we cant use pl/sql type, it must sql type, i.e. creating object and table of that object type in sql,and use of MEMEBER OF ,but what should i do in this case where insted of IN(MEMBER OF can be used for the case of IN) ,NOT IN is used for query.
    please reply,
    thank you

    You are only selecting a single column, primary_key, in your cursor.
    You could use the built in sys.ODCINumberlist or sys.ODCIVarchar2list data types instead and pass in only the primary_key.
    Re: Passing an array to an Oracle stored procedure
    http://download.oracle.com/docs/cd/E11882_01/appdev.112/e10765/ext_types_ref.htm#ADDCI5012
    If you are on an old version you can create your own types with the same definition.
    Using a cursor like that I can tell that you want to do whatever this does as slowly and inefficiently as possible though.
    Re: using cursor to sum  numbers, gives error
    Re: global temporary table row order

  • Decimal of SQL Server getting converted to Whole number in ORACLE

    Hi All,
    I am using ORACLESQL Developer tool to migrate database from SQL Server to ORACLE. The decimal datatype in Sql Server is not getting converted to its equivalent in ORACLE. Do anyone face the same problem? Its getting converted to WHOLE number.
    Also I am able to import data only from Excel sheet. Is therre any other option to import data using this tool?
    Also is the tool the best to use for migration? Please give me your suggestions pls since I am facing this conversion problem after import lakhs of data.
    I am using version 1.1.3
    Thanks in Advance,
    Srinivasan.T

    I have upgraded to the version mentioned by you. Even now it is not getting upgraded. I am exporting data using Excel sheet only. Is it possible for you to explain how to migrate data thru SQL * PLUS?
    Thanks,
    Srinivasan.T

  • How to handle DECIMAL MySQL datatype converted to DOUBLE in OBIEE 10gR3?

    Dear all,
    I have a problem in OBIEE 10g namely I use MySQL database as direct datasource to OBI server and I have a column in a table in MySQL which was designed as DECIMAL datatype (18,0).
    This column is used for measuring a duration, and the values are figured in seconds (without decimals), in form like:
    '1200'
    in MySQL database.
    After import the related MySQL table to OBI repository, the OBIEE converts the column in DECIMAL datatype to DOUBLE PRECISION datatype automatically.
    My object is to achieve values in such form, certainly in duration sense (not in time !):
    hh mm ss
    In order to accomplish it I've tried to change the column format with function ROUND:
    ROUND(db.table.column / *3600*, 2)
    The problem is that it works well only if the values can be divided with no remainder e.g.
    original value: 7200
    new value (ROUND): 2
    In case of my example:
    original value: 1200
    new value (ROUND): 0
    This is wrong, because 1200 seconds are not equal with 0 hour, I wish to see there either _0.33333_ hours OR I prefer much more _0 hour 20 min_
    Have somebody any ideas?
    I've tried to make a view in database and import it as CHAR datatype to database but it is not solution also, because if I filter in BI application or try to make a SUM the BI would drop errors..
    Regards,
    Laszlo

    Hi,
    Refer this links,this is exactly fulfill your requirement.
    OBIEE 11g - Change seconds to DD HH:MM:SS format
    OBIEE Functions
    share the updates..... :)
    mark if helpful/correct....

  • SQL*Loader characterset

    Database: 10.2.0.1
    sql> select * from nls_database_parameters t where t.parameter like '%CHARACTERSET%';
    PARAMETER VALUE
    ==============================================
    NLS_CHARACTERSET AL32UTF8
    NLS_NCHAR_CHARACTERSET AL16UTF16
    OS: RHEL5
    $ export | grep LANG
    declare -x LANG="en_US.UTF-8"
    declare -x NLS_LANG="GERMAN_GERMANY.WE8ISO8859P1"
    I have file in latin1 codepage.
    When I create external table (organization external type oracle_loader) I have problems with loading the Ü symbols in this file to the database:
    a;b;c;Ü;d <- row inserted
    Ü;a;b;c;d <- row inserted
    a;b;c;d;Ü <- row failed to insert
    KUP-04021: field formatting error for 1 field
    KUP-04101: record 1 rejected in file latin1.csv
    When I explicitly create external table with "characterset WE8ISO8859P1" clause the latin1 file loads successfully.
    When I load the UTF8 file using external table which was created without clause "characterset WE8ISO8859P1" the file is loads OK too.
    I want to know the process - why the characterset conversion from latin1 file (WE8ISO8859P1) to UTF8 database for some reason fails?
    Is there possible to import latin1 files and do not specify the codepage in the external table DDL (seems that NLS_LANG env variable does not affect SQL*Loader external table)?
    From documentation:
    Specifying the CHARACTERSET parameter tells SQL*Loader the character set of the input datafile. The default character set for all datafiles, if the CHARACTERSET parameter is not specified, is the session character set defined by the NLS_LANG parameter. Only character data (fields in the SQL*Loader datatypes CHAR,  VARCHAR, VARCHARC, numeric EXTERNAL, and the datetime and interval datatypes) is affected by the character set of the datafile.
    Edited by: lynx™ on 15.07.2010 7:46

    Hi Andre,
    this is how I teach my classes normally!
    You need to be aware of some changes you make with NLS_TERRITORY, which is part of NLS_LANG:
    --> if you set NLS_TERRITORY to anohter value then you implicitly change the settings for NLS_NUMERIC_CHARACTERS => , although it is the same with america and australia obviousely the first digit here is the decimal separator and the second one is the grand seperator, thisn can destroy all numeric values if it is set impropper !!!
    NLS_DATE_FORMAT,
    NLS_TIMESTAMP_FORMAT,
    AND NLS_CURRENCY.
    SYS @10gR2 SQL select * from v$nls_parameters
    PARAMETER VALUE
    NLS_LANGUAGE AMERICAN
    NLS_TERRITORY AMERICA
    NLS_CURRENCY $
    NLS_ISO_CURRENCY AMERICA
    NLS_NUMERIC_CHARACTERS .,NLS_CALENDAR GREGORIAN
    NLS_DATE_FORMAT DD-MON-RRNLS_DATE_LANGUAGE AMERICAN
    NLS_CHARACTERSET WE8ISO8859P1
    NLS_SORT BINARY
    NLS_TIME_FORMAT HH.MI.SSXFF AM
    NLS_TIMESTAMP_FORMAT DD-MON-RR HH.MI.SSXFF AM
    NLS_TIME_TZ_FORMAT HH.MI.SSXFF AM TZR
    NLS_TIMESTAMP_TZ_FORMAT DD-MON-RR HH.MI.SSXFF AM TZR
    NLS_DUAL_CURRENCY $
    NLS_NCHAR_CHARACTERSET AL16UTF16
    NLS_COMP BINARY
    NLS_LENGTH_SEMANTICS BYTE
    NLS_NCHAR_CONV_EXCP FALSE
    19 rows selected.
    SYS @10gR2 SQL > alter session set NLS_TERRITORY=australia;
    SYS @10gR2 SQL > select * from v$nls_parameters
    2 ;
    PARAMETER VALUE
    NLS_LANGUAGE AMERICAN
    NLS_TERRITORY AUSTRALIA
    NLS_CURRENCY $
    NLS_ISO_CURRENCY AUSTRALIA
    NLS_NUMERIC_CHARACTERS .,
    NLS_CALENDAR GREGORIAN
    NLS_DATE_FORMAT DD/MON/RR
    NLS_DATE_LANGUAGE AMERICAN
    NLS_CHARACTERSET WE8ISO8859P1
    NLS_SORT BINARY
    NLS_TIME_FORMAT HH12:MI:SSXFF AM
    NLS_TIMESTAMP_FORMAT DD/MON/RR HH12:MI:SSXFF AM
    NLS_TIME_TZ_FORMAT HH12:MI:SSXFF AM TZR
    NLS_TIMESTAMP_TZ_FORMAT DD/MON/RR HH12:MI:SSXFF AM TZR
    NLS_DUAL_CURRENCY $
    NLS_NCHAR_CHARACTERSET AL16UTF16
    NLS_COMP BINARY
    NLS_LENGTH_SEMANTICS BYTE
    NLS_NCHAR_CONV_EXCP FALSE

Maybe you are looking for

  • Printing Dunning Letters using Smartforms

    Hi all, I have a requirement wherein I need to print dunning letters using smartforms; the dunning data are extracted in program SAPF150D2;I modified the subroutine OFI_DUN_ACT to call function module FI_PRINT_DUNNING_NOTICE_SMARTF. Now I need to ext

  • GNOME (Wayland) doesn't work correctly after resume

    I installed Wayland, GNOME and GDM on my laptop. When I resume and unlock laptop after supend GNOME log me out. EDIT: I'll add some logs: lut 09 23:55:57 adam-laptop gnome-session[353]: OK lut 09 23:55:57 adam-laptop gnome-session[353]: Received sign

  • Best Hard Drive?

    What is the best external hard drive to use with my MacBook Pro to use as a capture scratch disk?

  • Captivate displays hebrew language backwards

    I imported a PPT into captivate that has Hebrew language.  When in PPT in the Hebrew language displays correctly.  When in Captivate, it displays backwards. What can I do to resolve this?

  • Unable to run jscript on IDServer thru Extendscript

    Hi, I'm working on Mac osx with IndesignServer CS5. On my local machine i'm able to run a javascript on IndesignServer (launched "standalone" with ./InDesignServer) thru ESTK 3.5.x. On a production machine this trick doesn't seem to work. I can selec