Trouble using XWD_RAMSTARTUP to connect to RAM DB:Database dbname must remain current

Trouble using XWD_RAMSTARTUP to connect to RAM DB:Database dbname must remain current...
I am having trouble connecting to the RAM database. The error I get is
"In stored procedure XWD_RAMSTARTUP: The following Express Server error occurred: Database GLB must remain current becasue the TEST program is still executing it."
The express database GLB is the global computing sample given by oracle doc.
My Test program defined in Express Administrator for GLB has the following code:
call xwd_meta.init
call xwd_ramstartup('e:\\Orahome1\\olap\\oes632\\service\\glb.rdc','sampleolap', 'sampleolap')
call xwd_attachdb('e:\\Orahome1\\olap\\oes632\\service\\glb.db')
The hyperlink I used is " http://192.168.10.110/Scripts/oowa.exe/ExpSrv632/dbxwdevkit/xwd_init?glb/test "
the content of the rdc file is
[PATHS]
CODE=E:\ORAHOME1\OLAP\OES632\COMMON\
DATA=E:\ORAHOME1\OLAP\OES632\SERVCIE\
EXTEND=E:\ORAHOME1\OLAP\OES632\SERVICE\
[RELATIONAL]
TYPE=OCI
INSTANCE=SMSDW
[DBINFO]
DBNAME=GLB
Any help/suggestions would be appreciated.

Hi,
> This program connects to database TEST, and reads table MYTABLE in schema MYSCHEMA.
>
> I would know if it is possible to select the table name in a dynamic way:
>
>   SELECT db_name() INTO :dbn FROM :ptab
>
> But this line fails with meesages:
>
>  dbdsmss: DBSL99 SQL1087
>  Must declare the table variable "@P1".   - you have to declare variables in beginning of the program.
You can select table name dynamic way , but you have to write ABAP code (Selection screen).
post this question in ABAP forum. you will get more information.
Thanks
Siva

Similar Messages

  • Using JSP to connect to an Access Database

    I need help on using JSP to connect to an Access database.
    This is the code I currently have connecting to a mySQL DB. I need to change it to connect to an Access DB. The reason I am switching DB's is because mySQL is no longer going to be carried by my host.
    Here is the code:
    <html>
    <head>
    <basefont face="Arial">
    </head>
    <body>
    <%@ page language="java" import="java.sql.*" %>
    <%!
    // define variables
    String UId;
    String FName;
    String LName;
    // define database parameters
    String host="localhost";
    String user="us867";
    String pass="jsf84d";
    String db="db876";
    String conn;
    %>
    <table border="2" cellspacing="2" cellpadding="5">
    <tr>
    <td><b>Owner</b></td>
    <td><b>First name</b></td>
    <td><b>Last name</b></td>
    </tr>
    <%
    Class.forName("org.gjt.mm.mysql.Driver");
    // create connection string
    conn = "jdbc:mysql://" + host + "/" + db + "?user=" + user + "&password=" +
    pass;
    // pass database parameters to JDBC driver
    Connection Conn = DriverManager.getConnection(conn);
    // query statement
    Statement SQLStatement = Conn.createStatement();
    // generate query
    String Query = "SELECT uid, fname, lname FROM abook";
    // get result
    ResultSet SQLResult = SQLStatement.executeQuery(Query);
         while(SQLResult.next())
              UId = SQLResult.getString("uid");
              FName = SQLResult.getString("fname");
              LName = SQLResult.getString("lname");
              out.println("<tr><td>" + UId + "</td><td>" + FName + "</td><td>" + LName
    + "</td></tr>");
    // close connection
    SQLResult.close();
    SQLStatement.close();
    Conn.close();
    %>
    </table>
    </body>
    </html>
    Thank You,
    Josh

    <%@ page language="java"%>
    <html>
    <head>
    <title>
    First Bean
    </title>
    <%@ page import="java.sql.*" %>
    </head>
    <body>
    <p>
    <%!
    Connection con;
    Statement st;
    ResultSet rs;
    String userid;
    String password;
    %>
    <%!public void db(JspWriter out)
    try{
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    con=DriverManager.getConnection("jdbc:odbc:phani");
    catch(Exception e){}
    try{
    st=con.createStatement();
    rs=st.executeQuery("SELECT * FROM login");
    while(rs.next())
    userid=rs.getString("userid");
    password=rs.getString("password");
    out.println(userid);
    out.println("</br>");
    out.println(password);
         out.println("</br>");     
    }catch(Exception e){}
    try{
    con.close();
    }catch(Exception e){}
    %>
    <%db(out);%>
    </p>
    </body>
    </html>
    phani is dsn name
    login is table name
    Good luck
    phani

  • Having trouble using my 9720 connecting to car hands free kit

    Hi, i am utterly frustrated with my company blackberry 9720 phone. The trouble i am having is with the car hands free kit, my skoda superb uses the bluetooth premium and cannot use the normal hands free setting like with my Iphone. The problem i am having is firstly connecting, i can only use the bluetooth premuim, which completly changes all the setting on the phone i.e turns the network off on the phone and then a screen pops up saying running SAP mode (must use an ittenna in car?), which in turn stops emails from coming in, i can stupidly write texts messages on my dash board and receive them and read them on my dash board while driving. So when i remove the keys from the ignition the phone does not put the phone back to its normal working settings, it keeps the network switched off i have to go to settings and turn the network on. Thirdly when i turn the car on the phone will not connect automatically it says cannot connect to mobile, but if i switch the phone off and on it automatically connects, but if by the grace of god it does connect an second time the phone crashes and resets and then connects five minutes later after reseting. forthly this is not an phone issue it is definatly software as i have been given an second 9720 and the fault is present on both phones.
    can anyone help

    as I believe it a car bluetooth hands free can only be paired to one device . ie if you wish to pair with another device you would have to reset back to default and search again.... so does the cuve work if you reset the bury and pair again but then your other phone does not work with it ... this is logical as if we drove down a motorway we would pick up loadsa phones.... therefor we can only pair to one device

  • Using only 1 connection to the database

    I have to use TopLink to connect to an Access database using the JDBC-ODBC bridge (please don't ask). The problem is that I can only create 1 connection to the database (as the bridge doesn't allow concurrent connections).
    How can I tell TopLink to share the only connection I have for reading and writing?
    I have tried setting the number of connection to 1 and using exclusive read but it allways create 1 to read and one to write...
    help?
    jeremie

    The database session "type" would need to be the same, and you need to go with the "lowest common denominator", which would clearly be Access here... There wouldn't be any advantage to letting TopLink support ServerSession and DatabaseSession combos, we'd always be waiting on the Access database anyways...

  • Im having trouble using bbciplayer on my ipad it says i need to switch to wifi but im already connected can any one help?

    im having trouble using bbciplayer on my ipad it says i need to switch to wifi but im already connected can any one help? I ve uninstalled/ reinstalled  switched it on and off what next?

    Did you try downloading the movie from iTunes on your iPad?  I know it takes longer but I'd try that. 
    Also try to reset all settings. 
    Settings > General > Reset. Reset all settings. 

  • Trouble using secure connection

    I'm having trouble accessing the iTunes store using a secure connection. I've tried everything I can possibly think of - disabling my firewall, renewing my IP address, etc. Apple and HP support don't seem to know how to help. I would greatly appreciate any advice anyone here can offer. Here's my network diagnostic log.
    Microsoft Windows XP Professional Service Pack 2 (Build 2600)
    Hewlett-Packard HP Pavilion dv2000 (RG404UA#ABA)
    iTunes 7.0.2.16
    Current user is an administrator.
    Network Adapter Information
    Adapter Name: {0B1AABA9-25E5-4308-9113-6F182EE30272}
    Description: Broadcom 802.11b/g WLAN
    IP Address: 0.0.0.0
    Subnet Mask: 0.0.0.0
    Default Gateway:
    DHCP Enabled: Yes
    DHCP Server: 255.255.255.255
    Lease Obtained: Thu Jan 11 19:05:50 2007
    Lease Expires: Thu Jan 11 20:05:50 2007
    DNS Servers:
    Adapter Name: {B6A6E76E-7355-4E9F-9357-0664380A25C6}
    Description: NVIDIA nForce Networking Controller
    IP Address: 169.254.43.237
    Subnet Mask: 255.255.0.0
    Default Gateway:
    DHCP Enabled: Yes
    DHCP Server: 255.255.255.255
    Lease Obtained: Thu Jan 25 17:09:02 2007
    Lease Expires: Mon Jan 18 21:14:07 2038
    DNS Servers:
    Adapter Name: {25E8B897-A7F7-42D2-BC97-C56F614434D2}
    Description: WAN (PPP/SLIP) Interface
    IP Address: 70.232.112.71
    Subnet Mask: 255.255.255.255
    Default Gateway: 70.232.112.71
    DHCP Enabled: No
    DNS Servers: 68.94.156.1
    68.94.157.1
    Network Connection Information
    Active Connection: sbc
    Connected: Yes
    Online: Yes
    Using Modem: Yes
    Using LAN: No
    Using Proxy: No
    SSL 3.0 Support: Enabled
    TLS 1.0 Support: Enabled
    Firewall Information
    Windows Firewall is off.
    Connection attempt to Apple web site was successful.
    Connection attempt to iTunes Store was successful.
    Secure connection attempt to iTunes Store was unsuccessful.
    The network connection timed out.
    HP   Windows XP Pro  

    I'm having trouble accessing the iTunes store using a secure connection. I've tried everything I can possibly think of - disabling my firewall, renewing my IP address, etc. Apple and HP support don't seem to know how to help. I would greatly appreciate any advice anyone here can offer. Here's my network diagnostic log.
    Microsoft Windows XP Professional Service Pack 2 (Build 2600)
    Hewlett-Packard HP Pavilion dv2000 (RG404UA#ABA)
    iTunes 7.0.2.16
    Current user is an administrator.
    Network Adapter Information
    Adapter Name: {0B1AABA9-25E5-4308-9113-6F182EE30272}
    Description: Broadcom 802.11b/g WLAN
    IP Address: 0.0.0.0
    Subnet Mask: 0.0.0.0
    Default Gateway:
    DHCP Enabled: Yes
    DHCP Server: 255.255.255.255
    Lease Obtained: Thu Jan 11 19:05:50 2007
    Lease Expires: Thu Jan 11 20:05:50 2007
    DNS Servers:
    Adapter Name: {B6A6E76E-7355-4E9F-9357-0664380A25C6}
    Description: NVIDIA nForce Networking Controller
    IP Address: 169.254.43.237
    Subnet Mask: 255.255.0.0
    Default Gateway:
    DHCP Enabled: Yes
    DHCP Server: 255.255.255.255
    Lease Obtained: Thu Jan 25 17:09:02 2007
    Lease Expires: Mon Jan 18 21:14:07 2038
    DNS Servers:
    Adapter Name: {25E8B897-A7F7-42D2-BC97-C56F614434D2}
    Description: WAN (PPP/SLIP) Interface
    IP Address: 70.232.112.71
    Subnet Mask: 255.255.255.255
    Default Gateway: 70.232.112.71
    DHCP Enabled: No
    DNS Servers: 68.94.156.1
    68.94.157.1
    Network Connection Information
    Active Connection: sbc
    Connected: Yes
    Online: Yes
    Using Modem: Yes
    Using LAN: No
    Using Proxy: No
    SSL 3.0 Support: Enabled
    TLS 1.0 Support: Enabled
    Firewall Information
    Windows Firewall is off.
    Connection attempt to Apple web site was successful.
    Connection attempt to iTunes Store was successful.
    Secure connection attempt to iTunes Store was unsuccessful.
    The network connection timed out.
    HP   Windows XP Pro  

  • Laptop won't reconnect to home wireless FiOS connection after using Verizon Wireless connection

    I have a laptop that I've had connected to my home FiOS Internet connection without problems in the past. Now, when I leave the house and use my Verizon wireless stick to connect to the Internet and then return home the laptop no longer connects to the home wireless network. Any ideas? I've already:
    Rebooted the laptop
    Rebooted the router
    Viewed the settings for the laptop connection on the router info page
    Thanks.

    xillib wrote:
    I have a laptop that I've had connected to my home FiOS Internet connection without problems in the past. Now, when I leave the house and use my Verizon wireless stick to connect to the Internet and then return home the laptop no longer connects to the home wireless network. Any ideas? I've already:
    Rebooted the laptop
    Rebooted the router
    Viewed the settings for the laptop connection on the router info page
    Thanks.
    Hello,
    If your internet connection at home is working fine using a wired connection (using an ethernet cable) to the router and you're only having trouble connecting wirelessly, then I would recheck the network settings on your laptop:
    http://www22.verizon.com/support/residential/internet/fiosinternet/networking/setup/addwireless/1265...
    The important part of this process is ensuring that you're selecting the right network name (SSID) for your home residential wifi network and entering the corresponding encryption key.
    If you need additional help, please call Verizon's Technical Support department at 1-888- 553-1555.

  • Speedgrade CC 2014.2 build 8.2x51 unsmooth/choppy 4K playback with GPU R9 295x2 - it uses only 2 GB of RAM (Windows 8.1 64Bit), Mac OS - same problem

    Hello, guys
    I have following configuration:
    i7-5960x @ 4.3 GHz
    32 GB DDR4 RAM
    ATI 295x2 8GB (Gpusniffer.exe shows 3072 MB on each Hawaii unit)
    M.2 Ultra Samsung XP941 (>1000Mb/sec)
    Few 850 Pro SSD for H.264 4k source
    Latest Speedgrade CC build at 16/02/2015 (DUAL MONITOR SETUP - 2560x1440 for Interface and 4096x2160 for Preview)
    I work with a lot of short 10-15 seconds 4K 4096x2160 24FPS H.264 clips from Panasonic GH4. Import them to Premiere CC as is, some warp stabilization, cut them, save project and open in Speedgrade CC. Everything is fantastic smooth in Premiere CC.
    In Speedgrade - some simple color correction - Exposition, some keyframes and the most simple grading for some material. I use GPU acceleration for sure to have full 4096x2160 4K 24FPS. But it is not responsive and smooth after some correction is applied. Everything is choppy and freezes first seconds, when I press "PLAY". I used Resources monitor, Task manager (Winodws 8.1 64-bit) and Afterburner. And there is what I found out:
    Afterburner shows utilization of single GPU (as we know for playback only 1 GPU used) the same amount like in Premiere. Speedgrade CC uses 2,5GB VRAM. By the way, if I use some none-gpu-accelerated effect, like "transform", for example, imported from Premiere, I will get "Not enough GPU resources" message in Speedgrade. Afterburner shows, that Speedgrade CC tried to utilize more, then max. available VRAM 3GB during this moment. So I switch off such effects, before open project in Speedgrade.
    Processor is also low on utilization (15%), maybe even a little lower, then in Premiere CC
    Disk - 3-10%, H.264 is low on it
    RAM !!! - is the problem. I allowed to use 29 GB of RAM to Adobe apps. Speedgrade CC uses not more, then 2-3 GB according to Taskmanager (mostly 2GB) and Resources Monitor of Windows 8.1 64Bit Pro. After I finished with color correction, opened project in Premiere CC, everything works smooth with lumteri on and! Premiere CC uses 9-10 GB of RAM to play the same clip at full resolution smoothly!!!
    I already reinstalled everything, including drivers for GPU, Windows 8.1 and Adobe CC. Same result.
    Macbook Pro Retina 15 late 2013 with i7-4960HQ/16gb RAM/Geforce 750m UPDATE!
    Under Mac Os Yosemite 10.10.2 - same situation here. Premiere CC uses 5GB (of 11GB available) for 4096x2160 Prores 422 HQ and is usable, smooth with some frame drops.
    Speedgrade CC uses 2,5 GB of RAM for 4096x2160 and it is impossible to use full 4096x2160. Only 1/2 Resolution for preview is smooth and usable at notebook display. At external 4096x2160 monitor connected through Thunderbolt it is much more choppy, I think it is hard for 750m with 2 GB of VRAM.
    UPDATE! Previous version (CC 2014) of Premiere CC and Speedgrade CC under Windows 8.1 64-bit - same situation.
    What do you think?
    My opinion - Speedgrade CC is not optimized for 4K resolutions. Premiere CC is good for 4K.
    btw, for information, latest AMD catalyst omega driver 14.12 has a problem with my R9 295x2 and Mercury Playback Engine (MPE) OpenCL - just the black screen with sound, when I turn on GPU acceleration. So I use previous 14.9 version. With 14.12 GPUsniffer.exe found one GPU device with 4Gb of VRAM and one GPU with 3GB of VRAM (normally must be 3GB+3GB for 295x2 Dual GPU-chip radeon).

    So, I got MSI 290x 8GB tested and... found out that I can't use 8GB of VRAM, because there are some AMD driver limitations!!!
    1. I switched off my 295x2 8Gb (4GB+4GB) to be sure, it will not affect VRAM amount.
    2. I launched Gpusniffer utility with 14.9 AMD driver and 3072 Mb VRAM was available ONLY! It worked like 295x2 with 3072 + 3072 Mb VRAM.
    3. I installed 14.12 AMD Omega driver and GPUsniffer informed that I have now 8192 Mb!!! But! Mercury Playback Engine did not work with Premiere Pro CC or Speedgrade CC as with my 295x2. Just black screen.
    RGB and Luma at 0 and preview is black with 14.12 AMD driver. Premiere PRO - the same situation.
    With 14.9 AMD Driver. Left 2560*1440 Dell working area monitor and 4096*2160 preview LG monitor right side.
    With 14.9 Gpusniffer shows 3 and 3 and 3GB Vram instead of 4GB and 4GB and 8Gb. As I understood with CrossfireX switched off - Adobe products and their GPUsniffer utility could "find" and use 8GB on primary GPU, but again we can see AMD driver issues.
    Single 290x 8GB with 14.9 AMD driver also displays only 3072 Mb available in Gpusniffer.
    NEATVIDEO informed on their website in Bugs section about 14.12 driver problem with MPE. They also wrote about problem to AMD, so I did. I think, this is really bad story. So, AMD, we are awaiting for normal drivers.

  • Trouble connecting to remote oracle database

    Hi,
    i'm having trouble connecting to an oracle database (Release 9.2.0.6.0) using the ojdbc14.jar from the oracle website. Can anybody spot the problems that i need to sort out to get it working? Code and error stack below.
    Thanks,
    Pat
    Code:
    import java.sql.*;
    public class Query1 {
    public static void main (String[] args) {
    try {
    Class.forName("oracle.jdbc.driver.OracleDriver");
    String url = "jdbc:oracle:thin:@175.3.41.248/KNWAPROD";
    String user = "username";
    String password = "password";
    Connection conn = DriverManager.getConnection(url,user,password);
    Statement stmt = conn.createStatement();
    ResultSet rs;
    rs = stmt.executeQuery("select count(*) from FACT_FAULT;");
    while ( rs.next() ) {
    // String lastName = rs.getString("Lname");
    System.out.println("In while loop!");
    conn.close();
    } catch (Exception e) {
    e.printStackTrace();
    System.err.println("Got an exception! ");
    System.err.println(e.getMessage());
    Error stack:
    java.sql.SQLException: Io exception: SO Exception was generated
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:125)
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:162)
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:274)
    at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:319)
    at oracle.jdbc.driver.PhysicalConnection.<init>(PhysicalConnection.java:344)
    at oracle.jdbc.driver.T4CConnection.<init>(T4CConnection.java:148)
    at oracle.jdbc.driver.T4CDriverExtension.getConnection(T4CDriverExtension.java:32)
    at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:545)
    at java.sql.DriverManager.getConnection(Unknown Source)
    at java.sql.DriverManager.getConnection(Unknown Source)
    at Query1.main(Query1.java:13)
    Got an exception!
    Io exception: SO Exception was generated

    You have:
    String url = "jdbc:oracle:thin:@175.3.41.248/KNWAPROD";Example URLs I've seen/used are:
    String url = "jdbc:oracle:thin:@//myhost:1521/orcl";
    String URL = "jdbc:oracle:thin:scott/tiger@//myhost:1521/orcl"In other words, I think you've munged your URL; you need some slashes and a port number (1521 is the default).

  • Can I use HDMI to connect PC to TV?

    I have an HP p7-1020 running Windows 7, 64 bit, and a Viore LED24VF60 TV. I can connect the TV using the analog VGA connections available on both the PC and TV. This works OK at a resolution of 1920x1080.
    I tried using the DVI connection on the PC, a DVI to HDMI adapter and an HDMI cable to the TV. This works except the picture is too big for the screen. The Start Menu and the Date and Time are not visible even though the PC resolution is set to 1920x1080.
    Is this typical? Do I need some special driver? (I checked the Viore web site but couldn't find any answer.)
    This question was solved.
    View Solution.

    Castingman, welcome to the forum.
    To use HDMI from the PC, you would have to install a PCI (not PCIE) video card that supports HDMI.  I am not certain that you will find PCI cards with this function.
    Signature:
    HP TouchPad - 1.2 GHz; 1 GB memory; 32 GB storage; WebOS/CyanogenMod 11(Kit Kat)
    HP 10 Plus; Android-Kit Kat; 1.0 GHz Allwinner A31 ARM Cortex A7 Quad Core Processor ; 2GB RAM Memory Long: 2 GB DDR3L SDRAM (1600MHz); 16GB disable eMMC 16GB v4.51
    HP Omen; i7-4710QH; 8 GB memory; 256 GB San Disk SSD; Win 8.1
    HP Photosmart 7520 AIO
    ++++++++++++++++++
    **Click the Thumbs Up+ to say 'Thanks' and the 'Accept as Solution' if I have solved your problem.**
    Intelligence is God given; Wisdom is the sum of our mistakes!
    I am not an HP employee.

  • Having trouble connecting SQL Developer to database on LINUX machine

    Having trouble connecting SQL Developer to database on LINUX machine
    Hello,
    I am trying to connect my windows 7 home premium machine to an oracle database 11g on a RedHat 5 machine using SQL Developer. i got this error message on SQL Developer
    Status : Failure - Test failed :The Network Adapter could not establish the connection
    on Linux
    LSNRCTL> status
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1)))
    STATUS of the LISTENER
    Alias                     LISTENER
    Version                   TNSLSNR for Linux: Version 10.2.0.1.0 - Production
    Start Date                03-APR-2013 16:13:13
    Uptime                    7 days 22 hr. 16 min. 41 sec
    Trace Level               off
    Security                  ON: Local OS Authentication
    SNMP                      OFF
    Listener Parameter File   /u01/app/oracle/product/11.2.0/db_1/network/admin/listener.ora
    Listener Log File         /u01/app/oracle/product/11.2.0/db_1/network/log/listener.log
    Listening Endpoints Summary...
    (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC1)))
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=172.X.X.X)(PORT=1521)))
    Services Summary...
    Service "PLSExtProc" has 1 instance(s).
    Instance "PLSExtProc", status UNKNOWN, has 1 handler(s) for this service...
    Service "orc11g" has 1 instance(s).
    Instance "orc11g", status READY, has 1 handler(s) for this service...
    Service "orc11gXDB" has 1 instance(s).
    Instance "orc11g", status READY, has 1 handler(s) for this service...
    Service "orc11g_XPT" has 1 instance(s).
    Instance "orc11g", status READY, has 1 handler(s) for this service...
    The command completed successfully
    LSNRCTL> and TNSPING
    tnsping 172.x.x.x
    TNS Ping Utility for Linux: Version 10.2.0.1.0 - Production on 11-APR-2013 14:32:17
    Copyright (c) 1997, 2005, Oracle.  All rights reserved.
    Used parameter files:
    /u01/app/oracle/product/11.2.0/db_1/network/admin/sqlnet.ora
    Used EZCONNECT adapter to resolve the alias
    Attempting to contact (DESCRIPTION=(CONNECT_DATA=(SERVICE_NAME=172.x.x.x))(ADDRESS=(PROTOCOL=TCP)(HOST=172.x.x.x)(PORT=1521)))
    OK (0 msec)
    [oracle@ltebilling ~]$Tnsnames.ora On Linux ,
    ORC11G =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = 172.x.x.x)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = orc11g)
    )Listner on Linux ,
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = PLSExtProc)
    (ORACLE_HOME = /u01/app/oracle/product/11.2.0/db_1)
    (PROGRAM = extproc)
    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1))
    (ADDRESS = (PROTOCOL = TCP)(HOST = 172.x.x.x)(PORT = 1521))
    )/ect/hosts Linux ,
    # Do not remove the following line, or various programs
    # that require network functionality will fail.
    127.0.0.1               localhost.localdomain localhost
    172.x.x.x             LTEBillingand there is no problem of ping linux from windows
    Edited by: user11309581 on Apr 11, 2013 3:16 PM

    yes really i'm already enaple the port 1521 and SELINUX=disabled
    [root@ltebilling ~]# /etc/init.d/iptables status
    Table: filter
    Chain INPUT (policy ACCEPT)
    num  target     prot opt source               destination
    1    RH-Firewall-1-INPUT  all  --  0.0.0.0/0            0.0.0.0/0
    Chain FORWARD (policy ACCEPT)
    num  target     prot opt source               destination
    1    RH-Firewall-1-INPUT  all  --  0.0.0.0/0            0.0.0.0/0
    Chain OUTPUT (policy ACCEPT)
    num  target     prot opt source               destination
    Chain RH-Firewall-1-INPUT (2 references)
    num  target     prot opt source               destination
    1    ACCEPT     all  --  0.0.0.0/0            0.0.0.0/0
    2    ACCEPT     icmp --  0.0.0.0/0            0.0.0.0/0           icmp type 255
    3    ACCEPT     esp  --  0.0.0.0/0            0.0.0.0/0
    4    ACCEPT     ah   --  0.0.0.0/0            0.0.0.0/0
    5    ACCEPT     udp  --  0.0.0.0/0            224.0.0.251         udp dpt:5353
    6    ACCEPT     udp  --  0.0.0.0/0            0.0.0.0/0           udp dpt:631
    7    ACCEPT     tcp  --  0.0.0.0/0            0.0.0.0/0           tcp dpt:631
    8    ACCEPT     all  --  0.0.0.0/0            0.0.0.0/0           state RELATED,ESTABLISHED
    9    ACCEPT     tcp  --  0.0.0.0/0            0.0.0.0/0           state NEW tcp dpt:1521
    10   ACCEPT     tcp  --  0.0.0.0/0            0.0.0.0/0           state NEW tcp dpt:22
    11   REJECT     all  --  0.0.0.0/0            0.0.0.0/0           reject-with icmp-host-prohibitedbut from windows system when i'm try tnsping i got this error
    C:\Windows\system32>tnsping orc11g
    TNS Ping Utility for 64-bit Windows: Version 11.2.0.1.0 - Production on 11-APR-2
    013 14:44:09
    Copyright (c) 1997, 2010, Oracle.  All rights reserved.
    Used parameter files:
    D:\app\ubai\product\11.2.0\dbhome_2\network\admin\sqlnet.ora
    Used TNSNAMES adapter to resolve the alias
    Attempting to contact (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = 172.x.x
    .x)(PORT = 1521)) (CONNECT_DATA = (SERVER = DEDICATED) (SERVICE_NAME = orc11g))
    TNS-12535: TNS:operation timed out
    C:\Windows\system32>

  • Trouble using AirPlay between iMac and AppleTV

    I'm running OS X Lion 10.7.5 and I'm having trouble using AirPlay between iMac and AppleTV (2nd Gen).  It used to work fine, but for some reason it just stopped responding.  I can see my media on my iMac from AppleTV and I can see AppleTV from my iMac when attempting to use AirPlay.  However, when I try to pull or push media from my iMac to AppleTV it just stalls and never loads.  AirPlay works fine from my iPhone and iPad with AppleTV - it's limited to my iMac only. 
    I'm using a Netgear R7000 wireless router and a Netgear AC120 WiFi Extender and as such, I have 4 available wireless networks (2 from the router and 2 from the extender / 2 - 2.4 GHz and 2 - 5 GHz).  My internet access is great and my network performance is good across the board.  All of my software/firmware is up to date (iMac, AppleTV and router/extenders). I've tried all combinations (mixing/matching) all of my wireless networks between devices (iMac/AppleTV) - nothing makes a difference (again, AirPlay works fine between my mobile devises/AppleTV).  Netgear Genie has been making changes to my network settings as new firmware has been installed in both the router and extender.  I'm guessing there is something screwy going on with the network settings on the iMac, but I can't figure it out.
    Anyone have any suggestions?
    Thanks!

    I'm glad you got it all working. Out of interest, how do you (or your son) connect to the internet now? Is it just a dial-up connection? If it is, I am sure you know that, even if you get the Apple TV to share the connection, the speed will seriously limit the use of many of the Apple TV's features.
    The Airport Extreme is a great router but you will need a DSL or cable modem as well as it won't connect to the internet without one. There are many great (and cheaper!) combined modem/routers available if your son wants to get a high-speed network up and running at lower cost. Any other computers, phones, games consoles etc that you may have in the house can then all connect easily.
    I hope that I have helped a little and I will look out for future posts in case I can help again.

  • Trouble using facetime on another device with same apple id

    Hi
    I am having trouble using facetime with my wife.  I have an iPad 2 and she has an IPhone 4S.  When we try to facetime, we are able to connect for a few seconds and then it drops off.  We are then unable to reconnect.  We both have the same apple Id and e-mail address although I am trying to contact her via her mobile number.  Any suggestions would be grateful received.

    Get an email address (free gmail.com) to use on the iPad.
    Using FaceTime http://support.apple.com/kb/ht4319
    Troubleshooting FaceTime http://support.apple.com/kb/TS3367
    The Complete Guide to FaceTime + iMessage: Setup, Use, and Troubleshooting
    http://tinyurl.com/a7odey8
    Troubleshooting FaceTime and iMessage activation
    http://support.apple.com/kb/TS4268
    iOS: FaceTime is 'Unable to verify email because it is in use'
    http://support.apple.com/kb/TS3510
    Using FaceTime and iMessage behind a firewall
    http://support.apple.com/kb/HT4245
    iOS: About Messages
    http://support.apple.com/kb/HT3529
    Set up iMessage
    http://www.apple.com/ca/ios/messages/
    iOS 6 and OS X Mountain Lion: Link your phone number and Apple ID for use with FaceTime and iMessage
    http://support.apple.com/kb/HT5538
    How to Set Up & Use iMessage on iPhone, iPad, & iPod touch with iOS
    http://osxdaily.com/2011/10/18/set-up-imessage-on-iphone-ipad-ipod-touch-with-io s-5/
    Troubleshooting Messages
    http://support.apple.com/kb/TS2755
    Troubleshooting iMessage Issues: Some Useful Tips You Should Try
    http://www.igeeksblog.com/troubleshooting-imessage-issues/
    Setting Up Multiple iOS Devices for iMessage and Facetime
    http://macmost.com/setting-up-multiple-ios-devices-for-messages-and-facetime.htm l
    FaceTime and iMessage not accepting Apple ID password
    http://www.ilounge.com/index.php/articles/comments/facetime-and-imessage-not-acc epting-apple-id-password/
    FaceTime, Game Center, Messages: Troubleshooting sign in issues
    http://support.apple.com/kb/TS3970
    Unable to use FaceTime and iMessage with my apple ID
    https://discussions.apple.com/thread/4649373?tstart=90
    How to Block Someone on FaceTime
    http://www.ehow.com/how_10033185_block-someone-facetime.html
    My Facetime Doesn't Ring
    https://discussions.apple.com/message/19087457
    To send messages to non-Apple devices, check out the TextFree app https://itunes.apple.com/us/app/text-free-textfree-sms-real/id399355755?mt=8
    How to Send SMS from iPad
    http://www.iskysoft.com/apple-ipad/send-sms-from-ipad.html
    You can check the status of the FaceTime/iMessage servers at this link.
    http://www.apple.com/support/systemstatus/
     Cheers, Tom

  • Having trouble maintaining remote desktop connection with Mavericks.  What is this about needing RDC 3.7.1 with Mavericks.  I downloaded RDC 3.7.1 but it does not replace RDC 2.1.0 previously installed.

    Having trouble maintaining remote desktop connection with Mavericks.  What is this about needing RDC 3.7.1 with Mavericks.  I downloaded RDC 3.7.1 but it does not replace RDC 2.1.0 previously installed

    Lucky you, it did not work for many users (which as it should be) so MS produced a new version, for ML and Mavericks.
    It's in the App Store, for free.
    FYI, I assume that you were attempting to post a picture, no one can see it (except maybe you) because it is on your computer rather than the forum server.
    file:///Users/dbrant/Desktop/About%20Apple%20Remote%20Desktop%203.7.1.webloc
    Use the small camera icon in the editor toolbar to post it.
    It also looks like you attempted to use Apple Remote Desktop, which does not do Windows.

  • I am having trouble using home sharing.

    I am having trouble using home sharing. My brother is able to access my libary but I can't access his. Even though we put in his ID for me to access, it just loads and gives up. Can anyone help me out? My OS is windows vista and my brother's is windows 7.

    Welcome to the Apple Community.
    The following article(s) may help you.
    Troubleshooting Wi-Fi networks and connections
    Recommended Wi-Fi settings
    Troubleshooting Security Software

Maybe you are looking for

  • HELP PLEASE- ON A DEADLINE

    Hi- I'm working with some HDV media in a ProRes 422 HQ sequence and while the picture looks great on my computer but when spitting it out via my Canopus box to a TV I'm getting a horrible looking picture (my final output will be DVD). Looks like inte

  • Help me ! Related to PLD

    hey Experts, I want do display UDT,UDF In Print . Through QPLD We can get the UDT and UDF But i want to  dislpay in Print through PLD how i can open UDT and UDF   In That? then if i choose QPLD  i can retreive only some tables or i want to select rel

  • Relation between COEP-COBK-COSS-COSP

    Hi  Experts, I am working on Archiving Object for COPA2_XXXX and job successfully executed with information COEP -- 5089 Records COBK -- 15765 Records COSP -- 20,765 Records will get archived. I would like to know the relation between COEP, COBK, COS

  • LOV with Custom Entries

    I am converting a PDF form to apex. The PDF form had the option of having one field that you could type a custom value in or click the box on the side to select an option from a list of values.. I can do this with List Manager (popup LOV) but it has

  • QVPN DOESN´T WORK

    I have just installed an RV042W router at my small business, and am trying to connect to it via QVPN from home. I have been unable to do so, no matter what I try. Pertinent information: I can connect to the router via Remote Management just fine, so