Sdo_util.from_gml311geometry and NLS

Hello,
We use sdo_util for simple conversions between coordinates. The problem is that this function changes NLS settings:
SQL> select parameter, value from nls_session_parameters;
PARAMETER VALUE
NLS_LANGUAGE POLISH
NLS_TERRITORY POLAND
NLS_CURRENCY z│
NLS_ISO_CURRENCY POLAND
NLS_NUMERIC_CHARACTERS ,
NLS_CALENDAR GREGORIAN
NLS_DATE_FORMAT YYYY-MM-DD HH24:MI:SS
NLS_DATE_LANGUAGE POLISH
NLS_SORT POLISH_CI
NLS_TIME_FORMAT HH24:MI:SSXFF
NLS_TIMESTAMP_FORMAT RR/MM/DD HH24:MI:SSXFF
NLS_TIME_TZ_FORMAT HH24:MI:SSXFF TZR
NLS_TIMESTAMP_TZ_FORMAT RR/MM/DD HH24:MI:SSXFF TZR
NLS_DUAL_CURRENCY z│
NLS_COMP ANSI
NLS_LENGTH_SEMANTICS BYTE
NLS_NCHAR_CONV_EXCP FALSE
17 wierszy zosta│o wybranych.
SQL> select sdo_util.from_gml311geometry('<gml:Point srsName="EPSG:2180" xmlns:gml="http://www.opengis.net/gml"> <gml:posList srsDimension="2">273217.480335267 442804.87743167 </gml:posList></gml:Point>') from dual;
SDO_UTIL.FROM_GML311GEOMETRY('<GML:POINTSRSNAME=EPSG:2180XMLNS:GML=HTTP://WWW.OP
SDO_GEOMETRY(2001, 2180, SDO_POINT_TYPE(273217,48, 442804,877, NULL), NULL, NULL
SQL> select parameter, value from nls_session_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-RR
NLS_DATE_LANGUAGE AMERICAN
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_COMP BINARY
NLS_LENGTH_SEMANTICS BYTE
NLS_NCHAR_CONV_EXCP FALSE
17 rows selected.
Temporarily, we enclose sdo_util by our function that restores our NLS settings.
Is it a bug or misuse? Strange is that sdo_util.to_gml311geometry doesn't have this feature.
Database version: 11.2.0.2, 11.2.0.3 Standard on different platforms.
I'll appreciate your help.

Czesc nieznany,
I don't see that happening on my default AMERICAN NLS setup for 11.2.0.3. It could be something specific to your Polish setup. I would open a support ticket and post how it gets resolved here.
Cheers,
Paul
SELECT parameter, value FROM nls_session_parameters WHERE parameter IN ('NLS_LANGUAGE','NLS_NUMERIC_CHARACTERS');
ALTER SESSION SET NLS_LANGUAGE = 'POLISH';
ALTER SESSION SET NLS_TERRITORY = 'POLAND';
SELECT parameter, value FROM nls_session_parameters WHERE parameter IN ('NLS_LANGUAGE','NLS_NUMERIC_CHARACTERS');
SELECT sdo_util.from_gml311geometry('<gml:Point srsName="EPSG:2180" xmlns:gml="http://www.opengis.net/gml"> <gml:posList srsDimension="2">273217.480335267 442804.87743167 </gml:posList></gml:Point>') FROM dual;
SELECT parameter, value FROM nls_session_parameters WHERE parameter IN ('NLS_LANGUAGE','NLS_NUMERIC_CHARACTERS');
PARAMETER      VALUE
NLS_LANGUAGE AMERICAN                                                                       
NLS_NUMERIC_CHARACTERS   .,                                                                             
2 rows selected.
Session altered.
Session altered.
PARAMETER      VALUE
NLS_LANGUAGE   POLISH                                                                                                                  
NLS_NUMERIC_CHARACTERS   ,                                                                                                                                         
2 rows selected.
SDO_UTIL.FROM_GML311GEOMETRY('<GML:POINTSRSNAME="EPSG:2180"XMLNS:GML="HTTP://WWW
(2001, 2180, (273217,480335267, 442804,87743167, ), (, , , , , , , , , , , , , ,
1 row selected.
PARAMETER      VALUE
NLS_LANGUAGE  POLISH                                                                                                                                     
NLS_NUMERIC_CHARACTERS  ,                                                                                                                                    
2 rows selected.
{code}                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

Similar Messages

  • Sdo_util.from_gml311geometry returns Message:Invalid Polygon

    The following query executed on 11.2.0.3 returns an exception:
    SELECT sdo_util.from_gml311geometry('<gml:Surface srsName="urn:ogc:def:crs:EPSG::28992" xmlns:gml="http://www.opengis.net/gml"><gml:patches><gml:PolygonPatch><gml:exterior><gml:LinearRing><gml:posList srsDimension="2" count="7">83665.185 437483.078 83655.784 437479.597 83667.002 437448.834 83669.197 437449.752 83673.781 437451.666 83676.38 437452.753 83665.185 437483.078</gml:posList></gml:LinearRing></gml:exterior></gml:PolygonPatch></gml:patches></gml:Surface>') FROM dual;
    ORA-29532: Java call terminated by uncaught Java exception: java.lang.RuntimeException: Message:Invalid Polygon
    Description:
    ORA-06512: at "MDSYS.SDO_UTIL", line 227
    Is surface not supported?
    How do I insert <code> tags as I used to?

    Hi Rene,
    It sure would be easier if that error message said something like "Surface not supported".  I think that Oracle Spatial only supports "Simple Geometric Primitives" (section 9.2) in the 3.1.1 specification whereas Surface is an "additional" geometric primitive in section 10.2.  The Oracle documentation does not mention such details so I think you'd need to submit an SR to get a definitive answer.   I've never tested each and every primitive to see if each one works or not, but I'd guess its just the simple ones that work.
    Your GML snippet works just fine in PostGIS
    SELECT ST_AsText(ST_GeomFromGML('<gml:Surface srsName="urn:ogc:def:crs:EPSG::28992" xmlns:gml="http://www.opengis.net/gml"><gml:patches><gml:PolygonPatch><gml:exterior><gml:LinearRing><gml:posList srsDimension="2" count="7">83665.185 437483.078 83655.784 437479.597 83667.002 437448.834 83669.197 437449.752 83673.781 437451.666 83676.38 437452.753 83665.185 437483.078</gml:posList></gml:LinearRing></gml:exterior></gml:PolygonPatch></gml:patches></gml:Surface>'));
    which is running JTS under the covers.  So one option is to use JTS in Oracle as Simon Greener does
    http://www.spatialdbadvisor.com/oracle_spatial_tips_tricks
    If that is not a fit, coding your own GML reader using PLSQL and XMLTYPE is not that hard to do and gives you the ability to work around any oddities in the incoming GML.
    Cheers,
    Paul

  • ORA-00932 error: limitations for SDO_UTIL.FROM_WKTGEOMETRY and SDO_GEOMETRY

    Hi all,
    In my project, I use C# .net and Oracle 11g. I use ADO.NET OracleClob object in my C# code which will be passed to a procedure (procedure defined in a package) where I convert the input clob/wkt geometry into SDO_GEOMETRY using SDO_UTIL.FROM_WKTGEOMETRY and subsequently the GEOMETRY can be pushed into a table as shown below.
    PROCEDURE insert_extent(p_key_id IN NUMBER, p_extent IN CLOB) AS
    m_geom SDO_GEOMETRY;
    BEGIN
    m_geom := SDO_UTIL.FROM_WKTGEOMETRY(p_extent);
    UPDATE TEMP SET GEOM = m_geom
    WHERE IDS = p_key_id;
    COMMIT;
    END insert_extent;
    The above code is working fine for small size clob inputs, but, I have encountered ORA-00932 error when my clob/wkt geometry was more than 30MB in size.
    Can any one tell me what is the limitation of size of the clob to convert the CLOB to SDO_GEOMETRY and is there any limitaion on SDO_GEOMETRY datatype object to write the geometry into a table as well via insert/update statement.
    Also share your thoughts on how to resolve the issue.
    Please let me know if further information is required and thanks for the help in advance.
    Regards,
    Kumar

    MDSYS.SDO_ORDINATE_ARRAY in sdo_geometry can hold 1048576 numbers:
    desc MDSYS.SDO_ORDINATE_ARRAY
    MDSYS.SDO_ORDINATE_ARRAY VARRAY(1048576) OF NUMBER

  • TO_NUMBER and NLS parameters......don't understand

    I am trying to get my head around the use of format elements and NLS parameters with TO_NUMBER and TBH am at my wits end. So I'm going to start with something simple. I've never bothered or had to bother with the third parameter 'nls params' for NLS settings and now that I have I really regret it.
    This works even though the '.' and ',' characters are not in their normal positions....
    SQL> SELECT TO_NUMBER(  '17.000,23', '999G999D99', 'nls_numeric_characters='',.'' ') FROM DUAL;
    TO_NUMBER('17.000,23','999G999D99','NLS_NUMERIC_CHARACTERS='',.''')
                                                               17000.2
    So why is this version throwing up an error?   (I should say all I've changed is the order of ',' and '.' in the string)
    SQL> SELECT TO_NUMBER(  '17,000.23', '999G999D99', 'nls_numeric_characters='',.'' ') FROM DUAL;
    SELECT TO_NUMBER(  '17,000.23', '999G999D99', 'nls_numeric_characters='',.'' ') FROM DUAL
    ERROR at line 1:
    ORA-01722: invalid number
    Also does the order of characters matter here  'nls_numeric_characters='',.'' ')  ?
    I apologise but when marking code in my spl*plus CLI and trying to paste here as 'SQL insert' lines ended up missing or wrapping or line spacing changing seconds later. I ended up with one line written over the other and the missing lines only being visible when highlighted!!!

    Also does the order of characters matter here  'nls_numeric_characters='',.'' ')  ?
    Of course the order is important. How would you tell the meaning of each character if it wasn't?
    First character is the decimal separator, and the second is the thousand separator.
    Your first query is OK because the decimal separator used in the input string is '.' and the thousand separator is ',', which matches exactly the characters specified in the NLS parameter.
    The second query failed for the opposite reason.

  • SQL*Loader and NLS

    I am running SQL*Loader 8.1 on an NT4-SP5 environment and getting a 282 - unable to locate character set.... The OTN reference on NLS is not clear on what to run to get the SQL*Loader program to run a simple ASCII text file into a LOAD/APPEND DDL statement. Any suggestions?

    In control file replace:
    MATUR_DT POSITION(78:85) DATE 'YYYYMMDD',
    OR
    On WinDoze, edit registry and set NLS_DATE_FORMAT to YYYYMMDD
    On *nix set NLS_DATE_FORMAT environment variable to YYYYMMDD                                                                                                                                                                                                                                                                                                                                                                                                                               

  • OAS 4.0.8.2 and NLS problem

    Hi,
    I migrated from OAS 4.0.8.1 to ...2.
    When I setup the net80 configuration using Easynet config I get the following error from the testing of the connection:
    ORA-12705: Invalid or unknown NLS parameter value specified.
    It just worked fine with the earlier version of OAS.
    Anyone...pls...

    Problem solved.
    I deleted OAS 4.0.8.2.0 and installed Web-to-go. Then I installed OAS 4.0.8.2.0.

  • SDO_UTIL.FROM_KMLGEOMETRY and Java

    Hello,
    I'm trying to write a Java program that will parse a KML file, convert KML geometry coordinates into SDO_GEOMETRY coordinates, then insert appropriate records into the database.
    I'm stuck on the 2nd part, converting KML into SDO_GEOMETRY. Here's my code:
    private static void getSDOGeom(Connection con, String [] geomKML, JGeometry [] geomSDO) throws Exception {
    CallableStatement s = con.prepareCall("{? = call SDO_UTIL.FROM_KMLGEOMETRY(?)}");
    ResultSet rs = null;
    for (int i = 0; i < geomKML.length; i++) {
    s.registerOutParameter(1, JGeometry.GTYPE_POINT);
    s.setString(2, "\'<Point><coordinates>" + geomKML[i] + "</coordinates></Point>\'");
    rs = s.executeQuery();
    geomSDO[i] = (JGeometry) s.getObject(1);
    Here's my error message:
    java.sql.SQLException: ORA-06550: line 1, column 13:
    PLS-00382: expression is of wrong type
    ORA-06550: line 1, column 7:
    PL/SQL: Statement ignored
    -then stack trace saying which line of my program caused the error - the executeQuery line.
    It looks like my problem is from the JGeometry.GTYPE_POINT in the registerOutParameter method call. I've tried a number of items here to no effect. The geomKML array contains KML coordinates stripped from a KML/XML file, I had to put the <Point> and <coordinates> tags in because the XML parser isn't including them. I've converted coordinates directly in the database, so I know the KML input is correct. The geomSDO array is of the proper size, but is null. I'm not sure what I'm doing wrong and can't find anything like this in the forums. A DB guy here at work did some searching and said I should use JGeometry, but he's not sure why it isn't working either.
    Anyone have any ideas?

    Thanks for the help... my problem was the ResultSet. I didn't noticed until your most recent code example that you weren't using it, but were acting upon the CallableStatement directly for the getObject method. I was using CallableStatement wrong. I think I saw an example somewhere with the CallableStatement and the ResultSet both being used. Thanks for the STRUCT code too, I saw something about that in a forum post, but wasn't sure what it was doing... but my code doesn't work without it. I did have to track down the jar libraries and imports for STRUCT and OracleType, but that wasn't too difficult.
    As to your other points, there is a bit of a misunderstanding because of the limited information I posted - I should have been more clear. This method is one method in a larger program - my database connection was already set up and working, though I thank you for being proactive and including it just in case. I was also printing out my KML coordinates to check to make sure they were ok and had already tested them in the database with a written procedure and knew they were working. The "\" was an escape character for a single quote, which I thought I needed to include because the input to FROM_KMLGEOMETRY needed to be surrounded by single quotes in the database testing. Your initial response also included them. I found that by removing them, my error went away - in fact, I didn't even notice they were there at first. Finally, the JGeometry array does indeed work and the array list isn't needed. I was hoping the array would work as it's more light weight and I'm able to pass the object by reference instead of by value, decreasing the overhead of my code. I was delighted to find that it did work once I fixed the ResultSet issue as previously mentioned. It is initialized elsewhere in my code to be the same size as the array with the KML geometry.
    I don't add the comments above to rebuff you. I'm very glad to you provided extremely complete answers. You've helped me before. I add them in case someone else stumbles upon this thread in hopes that the information will be useful to them.
    For posterity, Final code with related imports:
    import java.sql.CallableStatement;
    import java.sql.Connection;
    import java.sql.DriverManager;
    import oracle.spatial.geometry.JGeometry;
    import oracle.jdbc.OracleTypes;
    import oracle.sql.STRUCT;
    private static void getSDOGeom(Connection con, String [] geomKML, JGeometry [] geomSDO) throws Exception {
    CallableStatement s = con.prepareCall("{? = call SDO_UTIL.FROM_KMLGEOMETRY(?)}");
    STRUCT geomSDO_STRUCT = null;
    for (int i = 0; i < geomKML.length; i++) {
    s.registerOutParameter(1, OracleTypes.STRUCT, "MDSYS.SDO_GEOMETRY");
    // You could also add extrude, tessellate and altitudeMode
    s.setString(2, "<Point><extrude>0</extrude><tessellate>0</tessellate>" +
    "<altitudeMode>clampToGround</altitudeMode><coordinates>" + geomKML[i] +
    "</coordinates><extrude>0</extrude><tessellate>0</tessellate>" +
    "<altitudeMode>clampToGround</altitudeMode></Point>");
    s.executeQuery();
    geomSDO_STRUCT = (STRUCT) s.getObject(1);
    geomSDO[i] = JGeometry.load(geomSDO_STRUCT);
    s.close();
    The libraries that I needed to add to the project at compile time (already had the jdbc driver loaded for runtime) are
    sdoapi.jar (this is for JGeometry and other spatial related items) located <oracle home>/md/jlib/
    ojdbc6.jar (this is where the STRUCT and OracleTypes are found) located <oracle home>/jdbc/lib/
    Thanks,
    Edit:
    If you're trying to write SDO_GEOMETRY to a database, this thread will help.
    ORA-00939: too many arguments for function
    Edited by: J-rd-n on Sep 14, 2010 11:44 AM

  • R12 upgrade localization and NLS

    Hi,
    We are upgrading our existing R11i instance (11.5.10.2) with 13 installed languages and most of EMEA localizations.
    1) how to check what all localization is installed in current release 11i instance.
    2) how NLS gets handled during upgrade, do i have to apply any NLS patches during upgrade
    3) how the localization gets handled during R12 upgrade.
    4) are there any specific steps required to ensure that current localization setup are carried forward to R12 instance.
    5) Are there any post upgrade steps required to handle to localization.
    6) How to identify what are the steps for implementing russian localization

    940263 wrote:
    Hi,
    We are upgrading our existing R11i instance (11.5.10.2) with 13 installed languages and most of EMEA localizations.
    1) how to check what all localization is installed in current release 11i instance.
    2) how NLS gets handled during upgrade, do i have to apply any NLS patches during upgrade
    3) how the localization gets handled during R12 upgrade.
    4) are there any specific steps required to ensure that current localization setup are carried forward to R12 instance.
    5) Are there any post upgrade steps required to handle to localization.
    6) How to identify what are the steps for implementing russian localizationDuplicate post -- Migration From Eclipse to Jdeveloper

  • JDeveloper and NLS

    Hi.
    I just tried JDeveloper 10g (10.1.2) and I cann't connect to my database (JDeveloper 9i works fine). I've got ORA-12705 error (wrong NLS).
    I need Russian language support so I use koi8 charset. On my Linux system I tried various combinations of NLS_LANG like AMERICAN_AMERICA.CL8KOI8R but it had no influence on connection result. Only after changing system variable LANG from "ru_RU.koi8r" to "C" I've connected to database. But so I lost ability to edit russian text.
    Can anyone help me?
    Thanks.

    Not sure what you are asking here, but the THIN driver doesn't
    support NLS, the OCI driver does so be sure that you are using
    the OCI driver.
    null

  • IFS and NLS

    Does iFS support NLS ?
    If the answer is no, is it foreseen and when ?
    Thanks Luca
    null

    If you are from a part of the world where your thougths can not be described in 7-bit ASCII you can get some NLS-functionality into iFS. Ignore the install-guide and create the database in your favorite character set (I used WE8ISO8859P1). Then you will at least get interMedia Text searches to work in all supported locales. You will also be able to create documents with non-ASCII names, but beware!! There is no filename conversion in the SMB protocol yet. You will also see some problems with MIME-encoded headers and quoted printable emails. But by simply having the database functionality in my locale did transfer iFS from totally usless to something brilliant :-)

  • SDO_UTIL.PREPARE_FOR_TTS  and Partitioned Indexes

    Does this procedure work with partitioned indexes?
    After executing this procedure on tablespace that contains the first partition of the partition index, the table SDO_INDEX_TTS_METADATA$ is empty. In addition, I can only run this procedure once, it fails for each subsequent tablespace which has a partition.
    When I execute the procedure on a tablespace with a non partitioned index the SDO_INDEX_TTS_METADATA$ table is populated.

    Thanks Dear ,
    for your immediate reply .....
    As u suggest I have tried all the following combitation but still it does not work;
    SDO_UTIL.INITIALIZE_INDEX*ES*FORTTS;
    SDO_UTIL.INITIALIZE_INDEXES_FOR_TTS;
    SDO_UTIL.INITIALIZE_INDEX_FOR_TTS;
    it gives same error....
    Thanks & Regards
    Chandrakishore Bankhede

  • Oracle Jdbc Thin driver and nls suppot

    Hello,
    I have a hungarian database with nls_lang variable set to hungarian. I'm trying to do a jdbc connection using classes12.zip
    but I'm getting the hungarian characters converted to question marks or other characters.
    I read suggestions that I must include the nls_charset12.zip in my classpath too. So I did that but I'm still having the same problem.
    What is missed??
    How do I get the right hungarian charachters without any conversion.
    This is becoming frustrating and I'm not able to solve it yet.
    Thanks for your help

    One more question -
    Can we use Oracle JDBC OCI driver? We do not have any appletes...
    Does it have firewall issues too? Is there any other driver that
    we can use?
    Thanks,
    Vijaya.

  • Character conversion and NLS parameter

    Hi forms gurus,
    After deploy forms on IAS/Linux, i'm encountring the following situations:
    - Conversion of some characters: (é) becomes (e), (°) becomes (?).As i'm a french speaker, these subsitution are not interesting for me.
    - NLS Parameter: Errors, loggon dialog are in english.I want to put them in french.
    What setting may i do to solve these problems?
    Thank for ur help!
    TYAG

    Not familiar with Linux.
    But your problem seems to be based on the DB characterset.
    If the characters are not proper in the DB tables change the NLS_CHARACTERSET in DB. If the forms labels are showing the error change the NLS_LANG in the forms (default)*.env file

  • Translation and NLS in APEX

    Hello,
    Following this post, by Joel - Re: Validating manually entered dates – I decided to open a new thread, to clarify this important issue a bit more.
    "… I think the real problem is to solve the translation software defect."A generic solution is always the best one.
    " There are translation strings used by the APEX engine which are not accessible to the end developer"I believe this is the heart of the problem. The reference you gave, about the report engine translatable string is great (http://download-west.oracle.com/docs/cd/B31036_01/doc/appdev.22/b28550/global.htm#CHDJFHBD). I've tested it, and my pagination reports never looked better (not to mention all the time and energy I put to the JavaScript code, to bring it as close as possible to the current look). You need to allow access to ALL these kind of string/messages. This will be a giant step towards solving the translation software defects.
    While on the subject, is there a dictionary view for these strings, or some SQL query that allow us to reveal the proper message names available already in the system?
    Regards,
    Arie.

    Hi Joel,
    Thanks on your reply.
    "We'll try to get this done for 3.0."I'm pretty sure not only the Catalonians (?) will appreciate this … :)
    Seriously, if the report engine strings are any indication, this mechanism is working just grate. It can be a very productive addition to the next version.
    You are more then welcome to read (or re-read) all my praises at
    Re: Validating manually entered dates
    Best Regards and a Happy New Year,
    Arie.

  • URL Item and NLS!!!!

    Hi,
    I'm currently running portal 10g rel 2 and this is my issue. I have a bunch of url items on a page and when I change languages and update the items display name and url and submit my change it updates the display name for that languages but over-writes the url for both English and French content. Has anyone else experienced this? the same thing happens on 9026 as well. Can someone help?
    Regards
    Trevor

    I'm also having a problem translated portlet titles for url(custom provider.xml files) and report/form/dynamic portlets. Can someone help me with this????? I can't seem to find any information/documentation regarding this issue
    Thanks in advance

Maybe you are looking for

  • Error message : SOFFICEINTEGRATION143

    Hi Iu2019m making my planning layout in T-Code u2013 KEPM when I execute the planning method, I received this error message: Error while opening document. Can anybody help me to resolve this error? Please see the message: Error while opening document

  • MacOSX (10.9): Print dialogue box does not appear when printing PDF's

    Hi there, I've been having some troubles with the latest version of Adobe Reader on an intel-based MacBook Pro running MacOSX 10.9 (Mavericks). Environment Details: Device type: MacBook Pro OSX: 10.9 (Mavericks) Adobe Reader version: 11.0.06 Details:

  • Weblogic plug-in to ISA

    Hi, I have an iis server having weblogic plug-in on it. It handles requests coming from an ISA server and forwards them to weblogic server working behind. In a new architecture, I am planning to disregard IIS and connect directly through ISA to weblo

  • What's the best way to handle the growth of the mdm.tblTransaction table?

    Can anyone suggest a good way to handle the growth of the mdm.tblTransaction table? This table logs all the MDS transactions and the history of the data residing in it is required for auditing purposes. Hence we can't delete this data. I'm looking fo

  • AAM does not download the latest version?

    "This project was saved in a newer version of Adobe Premiere Pro and cannot be opened with this version." I would expect to see that if I tried to open a 8.0 project with Premiere 7.0. But that is not the case. This happens with I try to open a 8.1.0