Skip to main content

Home/ BI-TAGS/ Group items tagged setup

Rss Feed Group items tagged

cezarovidiu

Oracle BI Blog - EPM, Business Intelligence, and OBIEE: OBIEE 11g, Setup Client DSN for... - 0 views

  •  
    "After installing the OBI 11g client tools each OBI developer or administrator will need to access the Oracle BI RPD using the OBI Administration Tool. The Administration Tool is the GUI that connects to the Oracle BI Server RPD in Online mode (or on the network in offline mode) allowing development and administration functionality of the RPD. The informal video below highlights the process in which to create an ODBC data source connection to the Oracle BI server and test that the connectivity is working."
cezarovidiu

Using Oracle SQL Developer to Setup SQL*Loader Runs - 0 views

  • Using Oracle SQL Developer to Setup SQL*Loader Runs
cezarovidiu

Oracle Apex Thoughts.: How to send an email from apex 4.2 and 11g XE - 0 views

  •  
    "How to send an email from apex 4.2 and 11g XE To accomplish sending an email from your Oracle Apex application using oracle database 11g r2, you must use the new DBMS_NETWORK_ACL_ADMIN package to grant connect privileges to any host for the APEX_040200 database user. To start things off, begin by installing a free mail server emulator in your development environment. I used Melon 1.0 that can be downloaded from http://www.softpedia.com/get/Internet/Servers/E-mail-Servers/Viktor-Melon.shtml. After unpacking the archive just place the folder anywhere in your file system. The sample mails sent will be stored in the .Melon sub directory. Secondly connect to the database as sys user and run the following script: DECLARE   ACL_PATH  VARCHAR2(4000); BEGIN   -- Look for the ACL currently assigned to 'localhost' and give APEX_040200   -- the "connect" privilege if APEX_040200 does not have the privilege yet.   SELECT ACL INTO ACL_PATH FROM DBA_NETWORK_ACLS    WHERE HOST = 'localhost' AND LOWER_PORT IS NULL AND UPPER_PORT IS NULL;      IF DBMS_NETWORK_ACL_ADMIN.CHECK_PRIVILEGE(ACL_PATH, 'APEX_040200',      'connect') IS NULL THEN       DBMS_NETWORK_ACL_ADMIN.ADD_PRIVILEGE(ACL_PATH,      'APEX_040200', TRUE, 'connect');   END IF;   EXCEPTION   -- When no ACL has been assigned to 'localhost'.   WHEN NO_DATA_FOUND THEN   DBMS_NETWORK_ACL_ADMIN.CREATE_ACL('local-access-users.xml',     'ACL that lets users to connect to localhost',     'APEX_040200', TRUE, 'connect');   dbms_network_acl_admin.assign_acl('local-access-users.xml','localhost'); end; The third step is to set the smtp settings in Apex. 1.    Log in to Oracle Application Express Administration Services. If your setup uses the embedded PL/SQL gateway, go to: http://hostname:port/apex/apex_admin 2.    Click Manage Instance. 3.    Under Instance Settings, click Instance Settings. 4.    Under Email, enter the following: 1.    SMTP Host Address - Defines the server
cezarovidiu

Everything Oracle - 0 views

  •  
    "The import uses the ODBC data source and uses some of the information it provides to update some of the current values, leading to a mismatch with the defaults - which explains why you are getting the warning message.  Press "Revert to defaults", press "OK", and then retry the global consistency check.  You'll find that the warning message has disappeared."
cezarovidiu

SugarCRM - Install Settings - 0 views

  • memory_limit - Recommended setting: 512M or higher. The memory_limit parameter mainly comes into play when executing large transactions such as mass update, export and import. If this setting is too low when trying to perform one of these actions, the end user will encounter a fatal error and the process will not complete. upload_max_filesize and post_max_size - Recommended setting: 30M or higher. Both of these settings work in conjunction with each other when uploading files through SugarCRM which includes future upgrades as well as document and note attachments. Please note that there is also a setting in the application which can limit file upload file size for end users so the settings in PHP should be high enough to allow any future upgrade files to be loaded without error. max_execution_time = Recommended setting: 300. This setting controls how long a PHP process will remain active. It is important to set this parameter to a value that will allow for large requests to complete if necessary but also will not hamper performance of the server if running too long.
  • In regards to PHP setup, the following parameters should be set with values as indicated:
  • Maximum upload size Admin > System Settings 30000000 (~30 MB) The 'Maximum upload size' controls the maximum file size your users can upload into Sugar. This setting should not exceed the post_max_size and upload_max_filesize parameters in your PHP configuration.
  •  
    "memory_limit"
cezarovidiu

Convert VirtualBox (vdi) hard drive image to VMWare (vmdk) format » MikeBeach... - 0 views

  • Example (Windows):

    1"c:Program FilesOracleVirtualBoxVBoxManage.exe" clonehd "Win XP.vdi" xp.vmdk  --format vmdk --variant standard
  • Example (Linux):

    1VBoxManage clonehd "Win XP.vdi" xp.vmdk  --format vmdk --variant standard
  • Next, open VMWare and select Create a new virtual machine Select “I will install the operating system later” Make your OS selection about the OS that’s currently on the vmdk you will be using. (The guest OS, not the host OS). Later on, you will have the option to use an existing vmdk image as your virtual hard drive. Do so. You should now be able to finish setup and boot your converted disk image.
  • ...1 more annotation...
  • Absolute path to VBoxManage is necessary unless it’s in the Windows $PATH.
cezarovidiu

Adding Extensions to the Layout Editor - 11g Release 1 (11.1.1) - 0 views

    • cezarovidiu
       
      /middleware/user_projects/domains/obi/config/bipublisher/repository/Admin/Plugins
  • To implement a plug-in: Code the JavaScript plug-in using the guidelines described in Section 11.3, "Coding the Custom Plug-in." Place the JavaScript (.js) file in the following location <BI Publisher repository>\Admin\Plugins. Reload the Layout Editor. Your plug-in icon appears in the layout editor Insert menu.
cezarovidiu

Nkr1ptD: Using Apache with Odoo 8 and Ubuntu 14.04 - 0 views

  • We will restrict Odoo to only the localhost still running at port 8069
  • You probably want make it easier for you and your users, having a reverse proxy setup in order to accept the connect at port 80 or 443.  We will restrict Odoo to only the localhost still running at port 8069.
cezarovidiu

odoo.guide | Impart Valuable Odoo Knowledge - 0 views

  • STEP #1 – get pgAdmin Install pgAdmin from pgadmin.org STEP #2 – allow postgre server remote connections from everywhere Open etc/postgresql/9.x/main/pg_hba.conf and add following line: host    all             all             all                     md5 STEP #3 – let the postgre server listen to everyone Open etc/postgresql/9.x/main/postgresql.conf and change following line: listen_addresses = ‘*’ STEP #4 – give the user “postgres” a password Start the psql terminal: sudo -u postgres psql Give a password: ALTER USER postgres PASSWORD ‘yourpassword'; Leave the psql terminal: \q STEP #5 Restart postgre server by executing this terminal command: sudo /etc/init.d/postgresql restart STEP #6 Start pgAdmin and add a connection to a server like this:
1 - 16 of 16
Showing 20 items per page