New database creation in 10g RAC

Hi,
I'm trying to create a new database using DBCA in 2 node RAC cluster. When I select custom database and the password for sys and system users. In the next screen I select ASM and it is asking for password. When i give the password which i entered before for sys and system, it is not taking. Even i tried different password but getting an error password for user SYS is not valid. Any idea what the issue is?
Thanks

You must have created an ASM instance prior to creating the database. DBCA won't create an ASM instance alongside with a database.
As the ASM instance apparently doesn't exist, you can't connect to it,
Create an ASM instance first.
Sybrand Bakker
Senior Oracle DBA

Similar Messages

  • Why i can't not create new database in oracle 10g express

    why i can't not create new database in oracle 10g express?
    should i use oracle 11g standard edition?
    thanks

    In Oracle a schema is what a 'database' is in Sqlserver.
    And if you would have been aware about the limitations of XE, you would have known you can only create *1* (one) database using Oracle XE.
    However, probably you don't need a new database at all, and a schema will suffice.
    Sybrand Bakker
    Senior Oracle DBA

  • How do l create a new database in Oracle 10g Express

    How do l create a new database in Oracle 10g Express, other than the one that is created on installation?

    Hello,
    You cannot create a second XE database on the same server.
    But, Oracle database can support as many Schema as you want.
    "Oracle database" is like "SQL Server Instance" and "Oracle Schema" is like "SQL Server database". I means by this shortcut that for
    the end users accessing to different Schemas looks like accessing to different databases.
    You can have several applications on the same database. Each application has its own Schema and Datafile (Tablespace) structure.
    So on your XE database you can add a new Tablespace and create a new User/Schema as follows:
    sqlplus /nolog
    connect / as sysdba
    create tablespace {color:red}new_tablespace_name{color}
    extent management local autoallocate
    SEGMENT SPACE MANAGEMENT AUTO
    datafile '{color:red}complete_datafile_name{color}' size 100M autoextend on next 10M maxsize unlimited;
    create user {color:red}new_schema_name{color} identified by {color:red}password{color}
    default tablespace {color:red}new_tablespace_name{color}
    temporary tablespace TEMP
    quota unlimited on {color:red}new_tablespace_name{color}
    grant connect, resource to {color:red}new_schema_name{color};Then you can connect to this new User/Schema as you defined it and create your new structure and load datas.
    Hope it can help.
    Best regards,
    Jean-Valentin

  • How to create new database on Oracle 10g

    Hi All,
    Can any one tell me how to create new database on oracle 10g.
    Thanks in Advance for your help.

    again some confusion here.....
    u said u need a new database in your first post and now you saying u need a new schema..
    one database has many schemas(users)..... ex: scott,sys,system are few of them...
    now it depends you need seperate database for test,dev environment - this is in the case u have many schemas under each database and many tables(objects) under each schema.
    OR
    You just need a separate schema (in same db) for test,dev environment...where in you will have multiple tables in each schema...U need to know the dba credentials of the db to create a new schema.
    ideally u need to have different database...You can create one with out sys/system(oracle users) password as these passwords are db dependent.
    what you need is access to the any machine where server is installed(can be the same mc where you have your dev db or a diff machine) and that will be the machine where your db will be installed (can do it through database configuration assistance),ofcourse you will need windows authentication for this.
    so you login to the same machine or access it from your machine using remote login.
    I hope that is clear.Hope i am not listing things that you already know..Just did it coz of confusion between db and schema
    Message was edited by:
    coolguy

  • Database creation steps in RAC

    Hi Geeks,
    I am looking for steps for creating database in existing RAC environment. Its 2 node rac with 2 databases are already existing.
    I cannt use DBCA due to connectivity issues. So through silent mode i want to create a new database with two instances spread across two nodes. Please remember its ASM based databases.
    Environment :- Solaris 10, Oracle 10.2.0.4
    Thanks in advance,
    Mahesh.G

    Hope you find this interesting... There is a lot of good RAC information here:
    http://www.oracle-base.com/articles/rac/ArticlesRac.php
    Regards
    Z.K.

  • New database creation problem

    While we are trying to create new database in test server it getting below error.
    Error:

    Hello,
    There may be session accessing the model database, and that prevents the creation of the new database. This is by design; an exclusive lock is required on model database by SQL Server, since it needs to create the new database from a copy of the model database.
    Run the sp_who2 to know which session has opening the model database.
    Hope this helps.
    Regards,
    Alberto Morillo
    SQLCoffee.com

  • Problem in new database creation with the help of online  backup

    Dear dba's
    i am using oracle 11gR2 database in windows server 2003. database is running in ARCHIVE LOG mode.
    i have taken an online backup of all datafile,controlfile and spfile.Then i crated folders in all the locations as required for new database.
    then i registerd the service of new database named as 'newdb' by
    oradim -NEW -SID newdb
    then i created a password file manually in 'oracle_home\database' location.
    i created a new contolfile named as controlfile_01.ctl. the content of controlfile as follows
    STARTUP NOMOUNT
    CREATE CONTROLFILE SET DATABASE "NEWDB" NORESETLOGS ARCHIVELOG
    MAXLOGFILES 16
    MAXLOGMEMBERS 3
    MAXDATAFILES 100
    MAXINSTANCES 8
    MAXLOGHISTORY 292
    LOGFILE
    GROUP 1 (
    'D:\APP\ADMINISTRATOR\ORADATA\NEWDB\ONLINELOG\O1_MF_1_7FK0XG7B_.LOG',
    'D:\APP\ADMINISTRATOR\FLASH_RECOVERY_AREA\NEWDB\ONLINELOG\O1_MF_1_7FK0XHWB_.LOG'
    ) SIZE 50M,
    GROUP 2 (
    'D:\APP\ADMINISTRATOR\ORADATA\NEWDB\ONLINELOG\O1_MF_2_7FK0XKB8_.LOG',
    'D:\APP\ADMINISTRATOR\FLASH_RECOVERY_AREA\NEWDB\ONLINELOG\O1_MF_2_7FK0XM0Z_.LOG'
    ) SIZE 50M,
    GROUP 3 (
    'D:\APP\ADMINISTRATOR\ORADATA\NEWDB\ONLINELOG\O1_MF_3_7FK0XNOZ_.LOG',
    'D:\APP\ADMINISTRATOR\FLASH_RECOVERY_AREA\NEWDB\ONLINELOG\O1_MF_3_7FK0XOWB_.LOG'
    ) SIZE 50M
    DATAFILE
    'D:\APP\ADMINISTRATOR\ORADATA\NEWDB\DATAFILE\O1_MF_SYSTEM_7FK0SKN0_.DBF',
    'D:\APP\ADMINISTRATOR\ORADATA\NEWDB\DATAFILE\O1_MF_SYSAUX_7FK0SKPG_.DBF',
    'D:\APP\ADMINISTRATOR\ORADATA\NEWDB\DATAFILE\O1_MF_UNDOTBS1_7FK0SKTC_.DBF',
    'D:\APP\ADMINISTRATOR\ORADATA\NEWDB\DATAFILE\O1_MF_USERS_7FK0SKWB_.DBF',
    'D:\APP\ADMINISTRATOR\ORADATA\NEWDB\DATAFILE\O1_MF_EXAMPLE_7FK0Z5LK_.DBF',
    'D:\APP\ADMINISTRATOR\ORADATA\NEWDB\MARSH.DBF',
    'D:\APP\ADMINISTRATOR\ORADATA\NEWDB\JOMARSH.DBF'
    CHARACTER SET AL32UTF8
    the control file path was registered in pfile also.
    then i brought the database to nomount stage.
    the problem is when i try to mount database it shows following error. anyone can help me to over come from this issue????????
    SQL> startup pfile='D:\app\Administrator\product\11.1.0\db_1\database\INITnewdb.ora' nomount;
    ORACLE instance started.
    Total System Global Area 535662592 bytes
    Fixed Size 1334380 bytes
    Variable Size 301990804 bytes
    Database Buffers 226492416 bytes
    Redo Buffers 5844992 bytes
    SQL> ALTER DATABASE MOUNT;
    ALTER DATABASE MOUNT
    ERROR at line 1:
    ORA-00205: error in identifying control file, check alert log for more info
    the alert massage is:
    ORA-00210: cannot open the specified control file
    ORA-00202: control file: 'D:\APP\ADMINISTRATOR\ORADATA\NEWDB\CONTROLFILE\CONTROLFILE_01.CTL'
    ORA-27048: skgfifi: file header information is invalid
    OSD-04001: invalid logical block size (OS 1413563730)
    Fri Dec 09 13:11:59 2011
    Checker run found 1 new persistent data failures
    ORA-205 signalled during: ALTER DATABASE MOUNT...
    Thanks & Regards,
    John Marshal.A

    Hi;
    Error: ORA 205
    Text: error in identifying control file <name>
    Cause: The system could not find a control file of the specified name and
    size.
    Action: Either
    Check that the proper control filename is referenced in the
    CONTROL_FILES initialization parameter in the initialization parameter
    file and try again.
    When using mirrored control files, that is, more than one control file
    is referenced in the initialization parameter file, remove the control
    filename listed in the message from the initialization parameter file
    and restart the instance.
    If the message does not recur, remove the problem control file from
    the initialization parameter file and create another copy of the
    control file with a new filename in the initialization parameter file.
    Regard
    Helios

  • How to create a new DataBase using Oracle 10g Express Edition???

    Hello, I am new to Oracle, I am used to Microsoft SQL Server (Enterprise Manager).
    Here in Oracle I do not get how do I create a DataBase, and then create tables on it.
    could anyone please explain to me how to do it?

    A SQL Server database is roughly equivalent to an Oracle schema.
    You should rarely need to create a new database. If you do need to create a database, get a 'for fee' edition of Oracle and use the dbca tool (Database Configuration Assistant) to do that. In fact, you are only allowed to have one XE database on the machine.
    However, you can create as many schemas in an existing Oracle database as you need. (One schema, owned by userid SYS, is roughly equal to your 'master catalog'.)
    You can create other schemas simply by
    1) creating a userid that will own the schema (one designated for maintenance of the schema);
    2) grant that userid appropriate privileges, such as 'CREATE TABLE', 'CREATE VIEW' as shown in the SQL Reference manual under the GRANT section;
    3) provide that userid with a quota in one or more tablespaces (see the CREATE USER command in the SQL Reference manual);
    4) create the objects, such as tabels, views, sequences, stored procs and functions, etc. (as in the SQL Reference manual);
    5) create the users who will access the objects, and grant them the CREATE SESSION capability (as in the SQL Reference manual);
    6) grant access (select, update, execute, etc.) on the schema objects to these users (as in the SQL Reference manual);
    7) if desired, create synonyms on the schema objects so the users do not need to use fully qualified syntax such as "SELECT col FROM schema.table;" (as in the SQL Reference manual).
    In case you are interested in looking at the SQL Reference manual, it can be found at http://www.oracle.com/pls/db102/portal.portal_db?selected=1 ;-)

  • Database creation error: 9i RAC with Suse and LVM

    We have managed to install 9i on a 2 server Linux cluster. All indications are that both nodes and the shared storage are up and running correctly. When we use dbca to create a clustered database, both nodes show up as install options.
    However, when we attempt to create the new database, the install fails each time at 55% with a message regarding the file location <db name>rawtemp. The error is "The file cannot be reused; the file size does not match"
    We have deleted the database after it has failed, and also deleted and recreated the /dev/raw location as well as the actual logical volume, all without success. Does anyone have a suggestion.
    Thank you in advance!

    Update: The actual error is ORA 1257 "Cannot reuse raw_temp, unknown file size"

  • New database creation

    Does anyone know if it is possible to create a new database in a new location other than the one specified by {ORACLE_BASE} ?

    Absolutly. If you are using DBCA you can either change the definition of ORACLE_BASE, or edit the file paths in the wizard. Alternatively, you could create a script to create the database and not use DBCA at all.

  • Oracle 9i database to oracle 10g rac

    Hi all,
    Here is my situation:
    I have a client who wants Oracle 10GR2 RAC with OCFS2 on RHEL5 using FCP and Netapp storage.Till here I am ok, now he has nine different existing oracle 9i database single instance running on various RHEL3 servers, each of these database are small databases of 20-50GB max. Now the client wants the following:
    1. Move all these individual databases to the new RAC servers, which means I will have nine different database and instances.
    2. What is the fastest way to do it, I can get full database shutdown during weekends.
    Can I copy these databases to the new rac servers and make a new controlfile, will 10G read the 9i DB from the new locations?
    How do I make these db's into a rac instance?
    please help, very urgent.
    Sunil Varghese

    You need to ask this on the database forum, where thereare other threads that deal with 'complex' upgrades
    B

  • Database cloning in 10g RAC

    hi any body help me,
    How to clone using rman in Oracle 10g R2 RAC environment.

    step by step documentation for cloning RAC database.
    refer:
    RAC Database cloning with HOT Backup
    http://www.dba-oracle.com/t_rac_cloning_hot_backup.htm.
    hope, this helps you.

  • New database creation crash with ora-470

    i am creating a new instance on redhat linux 4 to migrate an hp erp instance
    after creating database i am creating tablespaces.
    when creating big tablespaces instance crashes with 3113 end of communcation channel
    tried already to change lower_zone_protection=100 (kernel parameter)
    made swap size big and checked space
    nothing helped
    still getting that lgwr crashed and pmon terminated instance with ora-470
    any ideas?
    regards

    /mirsupl/comn_log_out/oradump/bdump/mirsupl_pmon_19527.trc
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    ORACLE_HOME = /mirsupl/oracle/10.2
    System name:     Linux
    Node name:     mis231
    Release:     2.6.9-89.ELsmp
    Version:     #1 SMP Mon Apr 20 10:34:33 EDT 2009
    Machine:     i686
    Instance name: mirsupl
    Redo thread mounted by this instance: 1
    Oracle process number: 2
    Unix process pid: 19527, image: oracle@mis231 (PMON)
    *** 2010-01-22 14:58:52.211
    *** SERVICE NAME:(SYS$BACKGROUND) 2010-01-22 14:58:52.124
    *** SESSION ID:(555.1) 2010-01-22 14:58:52.124
    Background process LGWR found dead
    Oracle pid = 7
    OS pid (from detached process) = 19537
    OS pid (from process state) = 19537
    dtp = 0x2000bbf0, proc = 0x9f426340
    Dump of memory from 0x2000BBF0 to 0x2000BC1C
    2000BBF0 00000074 9F426340 00000000 00000000 [t...@cB.........]
    2000BC00 5257474C 00000200 00004C51 0000AF74 [LGWR....QL..t...]
    2000BC10 00000001 1998D4DE 00040001 [............]
    Dump of memory from 0x9F426340 to 0x9F4268FC
    9F426340 00000102 00000000 00000000 00000000 [................]
    9F426350 00000000 9D63F054 A290E354 9F5FF6B0 [....T.c.T....._.]
    9F426360 A290D508 00000000 A290D56C A290D56C [........l...l...]
    9F426370 A290E348 00000601 00000000 9F5D4948 [H...........HI].]
    9F426380 9F5FF6B0 00000007 00000000 00000000 [.._.............]
    9F426390 00000000 A272B148 A272B1E4 00000000 [....H.r...r.....]
    9F4263A0 00000000 00000000 00000000 00000000 [................]
    Repeat 3 times
    9F4263E0 00030000 00000000 00030000 00000000 [................]
    9F4263F0 00000000 00000000 00040000 00000000 [................]
    9F426400 00030000 00000000 00030000 00000000 [................]
    Repeat 1 times
    9F426420 00030000 00000000 00000000 00000000 [................]
    9F426430 00000000 00000000 00000000 00000000 [................]
    Repeat 3 times
    9F426470 00000000 0000012C 9F426478 9F426478 [....,...xdB.xdB.]
    9F426480 00000000 00000001 00000000 9F42648C [.............dB.]
    9F426490 9F42648C 00000000 00000000 00000000 [.dB.............]
    9F4264A0 00000000 00000000 0000006D 00000000 [........m.......]
    9F4264B0 00005645 00000018 00000004 00000075 [EV..........u...]
    9F4264C0 00000099 A2418354 A2418354 00010000 [....T.A.T.A.....]
    9F4264D0 00000000 00000000 00000000 00000000 [................]
    Repeat 1 times
    9F4264F0 00000000 00000000 00000000 00004C51 [............QL..]
    9F426500 00000000 00000000 00000000 00000000 [................]
    Repeat 2 times
    9F426530 00000000 00000000 00000000 9F426340 [............@cB.]
    9F426540 00000000 00000000 00000000 00000000 [................]
    Repeat 6 times
    9F4265B0 00000000 00000000 9F4265B8 9F4265B8 [.........eB..eB.]
    9F4265C0 00000000 00000000 00000001 00000000 [................]
    9F4265D0 00000000 00028002 0000000B 00004C51 [............QL..]
    9F4265E0 0000AF74 B745C6C0 00000000 00000000 [t.....E.........]
    9F4265F0 00000000 00000000 00000000 00000000 [................]
    9F426600 00000000 00000000 00000000 00000003 [................]
    9F426610 FFFFFFFF 00000000 00000000 00000000 [................]
    9F426620 00000000 00000000 00000000 00000000 [................]
    Repeat 6 times
    9F426690 00000000 00000000 00000000 6D61726F [............oram]
    9F4266A0 6C707572 00000000 00000000 00000000 [rupl............]
    9F4266B0 00000000 00000000 00000000 00000008 [................]
    9F4266C0 3273696D 00003133 00000000 00000000 [mis231..........]
    9F4266D0 00000000 00000000 00000000 00000000 [................]
    Repeat 2 times
    9F426700 00000006 4E4B4E55 004E574F 00000000 [....UNKNOWN.....]
    9F426710 00000000 00000000 00000000 00000000 [................]
    9F426720 00000000 00000008 33353931 00000037 [........19537...]
    9F426730 00000000 00000000 00000000 00000000 [................]
    9F426740 00000005 6361726F 6D40656C 33327369 [....oracle@mis23]
    9F426750 4C282031 29525747 00000000 00000000 [1 (LGWR)........]
    9F426760 00000000 00000000 00000000 00000000 [................]
    9F426770 00000000 00000014 00000002 00000000 [................]
    9F426780 00000000 00000000 00000000 00000000 [................]
    Repeat 9 times
    9F426820 00000200 00000000 00000000 00000000 [................]
    9F426830 00000000 A246F880 A2417718 A241715C [......F..wA.\qA.]
    9F426840 00000000 A2712934 00000000 00000000 [....4)q.........]
    9F426850 00000000 00000000 00000000 00000000 [................]
    9F426860 00000000 9F426864 9F426864 00AF0000 [....dhB.dhB.....]
    9F426870 00000000 00AE8F99 00A45705 015D8F99 [.........W....].]
    9F426880 00000000 00000000 00000000 00000000 [................]
    9F426890 00000000 00000000 00000814 00000000 [................]
    9F4268A0 00000088 00000000 00000814 00000000 [................]
    9F4268B0 00000000 00000000 00000000 00000000 [................]
    Repeat 3 times
    9F4268F0 00000000 00000000 00000006 [............]
    error 470 detected in background process
    ORA-00470: LGWR process terminated with error

  • Error in manual database creation in 10g for windows.

    hi,
    i have planned to create database manually in window command prompt by the following steps but i m getting this error,
    so guys provide me some idea to create db.
    D:\oracle\product\10.1.0\Db_1>set oracle_sid=god;
    D:\oracle\product\10.1.0\Db_1>oradim -new -sid%ORACLE_SID%-intpwd mysecretpasswo
    rd -startmode M
    D:\oracle\product\10.1.0\Db_1>dir database
    Volume in drive D is COLLECTIONS
    Volume Serial Number is 5A2D-5C24
    Directory of D:\oracle\product\10.1.0\Db_1\database
    03/07/2010 05:56 PM <DIR> .
    03/07/2010 05:56 PM <DIR> ..
    03/06/2010 11:04 PM <DIR> archive
    03/07/2010 11:12 PM 106 core_orcl_1220_1284_2010_3_7_17_19_32.log
    03/07/2010 05:17 PM 2,048 hc_orcl.dat
    03/06/2010 11:56 PM 157 initgod.ora
    03/07/2010 05:51 PM 955 INITorcl.ORA
    03/06/2010 11:01 PM 31,744 oradba.exe
    03/06/2010 11:59 PM 2,560 PWDgod;.ORA
    03/06/2010 11:13 PM 1,536 PWDorcl.ora
    03/07/2010 05:56 PM 2,560 SPFILEORCL.ORA
    03/07/2010 12:15 AM 8,510 sqlnet.log
    9 File(s) 50,176 bytes
    3 Dir(s) 26,471,571,456 bytes free
    D:\oracle\product\10.1.0\Db_1\database>initgod.ora
    D:\oracle\product\10.1.0\Db_1\database>sqlplus/nolog
    SQL*Plus: Release 10.1.0.2.0 - Production on Mon Mar 8 23:00:01 2010
    Copyright (c) 1982, 2004, Oracle. All rights reserved.
    SQL> connect sys/mysecretpassword as sysdba
    ERROR:
    ORA-12560: TNS:protocol adapter error
    SQL>
    thanks

    Jr.DBA wrote:
    hi,
    i have planned to create database manually in window command prompt by the following steps but i m getting this error,
    so guys provide me some idea to create db.
    D:\oracle\product\10.1.0\Db_1>set oracle_sid=god;
    D:\oracle\product\10.1.0\Db_1>oradim -new -sid%ORACLE_SID%-intpwd mysecretpasswo
    rd -startmode M
    D:\oracle\product\10.1.0\Db_1>dir database
    Volume in drive D is COLLECTIONS
    Volume Serial Number is 5A2D-5C24
    Directory of D:\oracle\product\10.1.0\Db_1\database
    03/07/2010 05:56 PM <DIR> .
    03/07/2010 05:56 PM <DIR> ..
    03/06/2010 11:04 PM <DIR> archive
    03/07/2010 11:12 PM 106 core_orcl_1220_1284_2010_3_7_17_19_32.log
    03/07/2010 05:17 PM 2,048 hc_orcl.dat
    03/06/2010 11:56 PM 157 initgod.ora
    03/07/2010 05:51 PM 955 INITorcl.ORA
    03/06/2010 11:01 PM 31,744 oradba.exe
    03/06/2010 11:59 PM 2,560 PWDgod;.ORA
    03/06/2010 11:13 PM 1,536 PWDorcl.ora
    03/07/2010 05:56 PM 2,560 SPFILEORCL.ORA
    03/07/2010 12:15 AM 8,510 sqlnet.log
    9 File(s) 50,176 bytes
    3 Dir(s) 26,471,571,456 bytes free
    D:\oracle\product\10.1.0\Db_1\database>initgod.ora
    D:\oracle\product\10.1.0\Db_1\database>sqlplus/nolog
    SQL*Plus: Release 10.1.0.2.0 - Production on Mon Mar 8 23:00:01 2010
    Copyright (c) 1982, 2004, Oracle. All rights reserved.
    SQL> connect sys/mysecretpassword as sysdba
    ERROR:
    ORA-12560: TNS:protocol adapter error
    SQL>
    thanksEven if you want to do it manually as a learning exercise, I'd advise you to use dbca. Select 'custom' database type, and at the end select 'create scripts' without actually creating a database. Then study those scripts.

  • Can not create  new database on Oracle 10G release 2 (10.2.0.3) under Linux

    I have a server with SO Red Hat Enterprise Linux 4
    Oracle Oracle 10G release 2 (10.2.0.1)
    After instaling the patch (10.2.0.3) to the data base it doesn´t allow me to create a new data base when the dbca is going to generate the service it disconects it self from oracle and marks
    an error that its not conected to oracle.
    atte
    Rafael Mendoza

    Hi Rafael
    Did you change your shm values in the kernel ? Please check those values in 2.6 Configuring Kernel Parameters
    64 bits: http://download.oracle.com/docs/cd/B19306_01/install.102/b15667/pre_install.htm#i1011296
    32 bits: http://download.oracle.com/docs/cd/B19306_01/install.102/b15660/pre_install.htm#sthref264
    Note that you have to increase : semmni, semmns,shmmni should be multiplied by # of instances, SHMMAX should be set to avail memory
    Can you please give us your values from your server please?
    Your physical memory :
    grep MemTotal /proc/meminfo
    And also the result of
    ipcs -l
    which release of Linux are working with 32 bits or 64 bits ?

Maybe you are looking for

  • Ipod sync quits after 9 songs

    I'm trying to sync my iPod touch with my iTunes library on my PC.  I have previously done this successfully many times.  The sync quits after about 9 songs are transferred.  I imported several CDs and they show up with the red square inside the red c

  • Function Module : CONVERT_OTFSPOOLJOB_2_PDF / CONVERT_ABAPSPOOLJOB_2_PDF

    My question : What is the version of the PDF that is generated using this function module. Can this function module be used to generate a higher version of PDF (Adobe document) Thanks.

  • Scroll bar in ANALYSIS_ITEM

    Hi all. Does anyone know if it is possible to put a scroll bare inside an ANALYSIS_ITEM in WAD? The problem is that the users want to be able to see the header of the key figures when the list of items is longer than the screen. Regards Øyvind

  • InDesign suddenly painfully slow to edit text.

    As the title says, you type a few words in and look at the screen and maybe 2 letters are there, the curser has disappeared and you have to wait 5/6 seconds for the text to appear, but that is not all, when the curser reappears, turns into the hourgl

  • Comment visioner les films acheter à l'aide de l'apple tv sur mon mac ?

    Bonjour, j'ai acheté plusieurs films sur l'apple tv mais je ne sais pas comment proceder pour les lire sur mon Mac . Pourriez vous m'aider ? Merci, Noémie