Problems consering use of Chromecast and my Linksys router together

Hi, I have a problem with my Linksys router type CL7B1K148596
Model no: WRTS54GL
Ver. 1.1
I want to use this routher together with my Chromecast wireless unit to stream from my net to my procector, is this router compatible with the Chromecast unit?

Yes. Use the link FurryNutz had provided you. Make sure that you choose the Hardware version to 1.1. You also need to check what's the current firmware version of your router. You may refer to this link on the steps of updating the router firmware: http://kb.linksys.com/Linksys/ukp.aspx?vw=1&docid=e9c2361ee7974d75913e61386a712188_4030.xml&pid=80&r...

Similar Messages

  • HT4260 I have an AirPort Extreme and a linksys router. What is the best way to get 6-8 wired connections with ac speeds?

    I have an AirPort Extreme and a linksys router. What is the best way to get 6-8 wired connections with ac speeds?
    Appreciate your assistance.

    The answer depends on whether the AirPort Extreme is your main router....or...the Linksys device is your main router.
    In either case, the two devices must connect together using a wired Ethernet connection using CAT5e or CAT6 cabling.
    Any version of the AirPort Extreme produced within the last 5 years will have Gigabit Ethernet ports. In order to get the same speeds from the Linksys router, it will also need to be Gigabit Ethernet capable.
    If you need additional Ethernet ports, you will need to add a Gigabit Ethernet switch to either the AirPort Extreme or Linksys router.
    It is assumed that your other devices connecting to the AirPort Extreme and Linksys router will also have Gigabit Ethernet capability.
    Not sure why you mention "ac" speeds in your post. This relates to wireless connections, not wired.

  • Using New GL and FI-SL both together

    Hi,
    actually we use FI-SL (SAP 4.6C). Our system will be upgraded on mySAP ERP and we will use New GL. Is it possible to use FI-SL and New GL both together in mySAP ERP? We must continue the use of FI-SL in mySAP ERP, but we like to use New GL additionally. Is this possible?
    Thanks in advance!
    Grit

    Hello Grit,
    technically, it is not a problem. The statement is, if you have used FI-SL like a general ledger (with your specific adjustments, field movements, etc) then you should switch to newGL. FI-SL is considered (again) as a reporting tool over many applications (= SAP modules). You do not need to give up your FI-SL application(s) when migrating to newGL.
    Hope that helps, points welcome
    Csaba

  • My problem in using weblogic Datasource and proxy user

    Hello
    I create a DataSource in Weblogic that connect to the database by a proxy user and I have a client application that use this DataSource and create a proxy session , I've written my client application (it's a stand alone client application) code below :
    public static void main(String [] args) {
    OracleConnection conn=null;
    javax.sql.DataSource ds=null;
    Hashtable env = new Hashtable();
    env.put( Context.INITIAL_CONTEXT_FACTORY, "weblogic.jndi.WLInitialContextFactory" );
    env.put(Context.PROVIDER_URL, "t3://127.0.0.1:7001");
    try{
    Context context=new InitialContext( env );
    ds=(javax.sql.DataSource) context.lookup ("OracleConnection2");
    conn=(OracleConnection) ds.getConnection();
    java.util.Properties prop = new java.util.Properties();
    prop.put(OracleConnection.PROXY_USER_NAME, "web_user1");
    prop.put(OracleConnection.PROXY_USER_PASSWORD,"web_user1");
    conn.openProxySession(OracleConnection.PROXYTYPE_USER_NAME, prop);
    if (conn.isClosed()){
    System.out.println("Connection closed");
    return;
    testJDBC(conn,true);
    for(int k=0;k<10;k++){
    testJDBC(conn,false);
    conn.close(OracleConnection.PROXY_SESSION);
    conn.close();
    }catch(Exception ex){
    ex.printStackTrace();
    It works but my problem is that in line "prop.put(OracleConnection.PROXY_USER_PASSWORD,"web_user1")" or line "prop.put(OracleConnection.PROXY_USER_NAME, "web_user1");"
    Let me to mention a scenario :
    *1- I type a wrong username or password in my client application and I run the client application it shows me this error : invalid username/password*
    *this error is acceptable*
    *2- then I correct the wrong username or password immediately and run the application again , it shows me this error (at line conn.openProxySession(OracleConnection.PROXYTYPE_USER_NAME, prop)) :*
    java.sql.SQLException: Closed Connection
         at weblogic.rjvm.ResponseImpl.unmarshalReturn(ResponseImpl.java:234)
         at weblogic.rmi.internal.BasicRemoteRef.invoke(BasicRemoteRef.java:223)
         at weblogic.jdbc.rmi.internal.ConnectionImpl_weblogic_jdbc_wrapper_JTAConnection_weblogic_jdbc_wrapper_XAConnection_oracle_jdbc_driver_LogicalConnection_1032_WLStub.openProxySession(Unknown Source)
         at weblogic.jdbc.rmi.SerialConnection_weblogic_jdbc_rmi_internal_ConnectionImpl_weblogic_jdbc_wrapper_JTAConnection_weblogic_jdbc_wrapper_XAConnection_oracle_jdbc_driver_LogicalConnection_1032_WLStub.openProxySession(Unknown Source)
         at oracle.HRFacadeClient.main(HRFacadeClient.java:38)
    *3- I run the application again (by correct username and password) but this time it shows me this error :*
    java.sql.SQLException: Unsupported feature
         at weblogic.rjvm.ResponseImpl.unmarshalReturn(ResponseImpl.java:234)
         at weblogic.rmi.internal.BasicRemoteRef.invoke(BasicRemoteRef.java:223)
         at weblogic.jdbc.rmi.internal.ConnectionImpl_weblogic_jdbc_wrapper_JTAConnection_weblogic_jdbc_wrapper_XAConnection_oracle_jdbc_driver_LogicalConnection_1032_WLStub.openProxySession(Unknown Source)
         at weblogic.jdbc.rmi.SerialConnection_weblogic_jdbc_rmi_internal_ConnectionImpl_weblogic_jdbc_wrapper_JTAConnection_weblogic_jdbc_wrapper_XAConnection_oracle_jdbc_driver_LogicalConnection_1032_WLStub.openProxySession(Unknown Source)
         at oracle.HRFacadeClient.main(HRFacadeClient.java:38)
    *4 - if I repeat running the application for multi times every time it shows me the previous error*
    *5- I wait about one minute the problem solved and my application can create proxy session *
    the result is that if I wanna create proxy session by wrong username or password and I get "Invalid username/password" error message , then after correcting username or password I have to wait about one minute and then run the application again_
    Do you know how I can overcome this problem ?
    Thank you

    Hi Jamshid,
    There is same problem observed few days back with us, and we have used the below code, and it got solved. Actually there is a problem observed while using proxy connections on weblogic.
    if(conn instanceof weblogic.jdbc.extensions.WLConnection){
         weblogic.jdbc.extensions.WLConnection cn=(weblogic.jdbc.extensions.WLConnection)conn;
         cn.clearStatementCache();
    http://rocksolutions.wordpress.com/2010/06/04/connection-pool-issue-on-weblogic/
    Hope this helps.
    Thanks

  • Problem while using camera connetor and Sony DSC-M1

    Dear all
    My digital Camera Sony DSC-M1 is able to take pictures and take video into mpeg4 format .
    this is the revirew of this camera
    http://www.steves-digicams.com/2004_reviews/m1.html
    However, I got a problem while using this camera with iPod +Camera connector.
    When I plug this camera into camera connector , ipod will transfer all photo from the camera , but do nothing with the video.
    I guess that problem is the video file is not inside the "/DCIM" folder
    All video file ( *.mp4 ) are all in the folder named " /MP_ROOT/101MNV01/ "
    Can anyone help me how to make this sync from camera to ipod automatically both photo and video ?
    This problem also bother me while I am using iPhoto to transfer the file when I was home .
    pls , help me , thanks a lot

    Hi there, I'm having exactly the same problem. Have you found out how to do it?

  • Problem when using WEB.SHOW_DOCUMENT and passing in lexical parameter

    Hi,
    I got a blank page with error "An error has occured while trying to use this document" when I tried to use web.show_document and passing a lexical parameter to 10g report on 10gAS. The URL in the web.show_document is:
    http://<srvname>:<portnum>/reports/rwservlet?server=repserver90&report=myrpt.rdf&destype=Cache&desformat=pdf&userid=<usr>/<pw>@<db>&where_clause=where%20product_type%20in%20('REPORT')
    If I change the desformat to htmlcss, it is fine to display the report. But doesn't work with desformat=pdf. The pdf file has been generated in the cache. Why can't it display on the screen.
    Also I tried to use double quote the value for where_clause. The pdf report showed up. But it ignored the where clause.
    Experts please help.
    Ying

    I use lexical parameters and they work fine, but I use a parameter list. The code is contained in a form that is called by all forms that wish to run a report. This way you only need the logic for printing in a single form. If you want the form, email me at [email protected]

  • Having problems when aligning footer div and content div close together, in the browsers they are wi

    My problem is when I paste text or paste anything in div tag. I have a container that contains everything. I have a content div that contains content. I also have a footer. When I align the footer at the end to content div which is in the container, it looks good until I look at it in a the different browsers, the content and footer are so wide apart. I've tried everything I could to make the browsers look as close as what I do in dreamweaver cs4. Is there a solution to this problem?
    This is the link to page working on.
    http://www.nlclv.org/truenewwebsite/html/doctrine.htm
    The footer and content div are align very close in dreamweaver but very far apart in the browsers.
    Also if you click on this link and click on calendar of events page you will see the samething.
    Thanks for your help.

    Absolutely positioned divisions are NOT a good primary layout method. Here's why:
    http://www.apptools.com/examples/pagelayout101.php
    You should use a CSS with default CSS positioning (which is no positioning at all).  And then use margins, padding and floats to align elements on the page.  Also, if you want the page height to flex to content (as it should), remove the height property from divisions containing text.
    Something like this:
    http://alt-web.com/TEMPLATES/2-col-fixed-flash-holder.html
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb
    http://alt-web.blogspot.com

  • Firefox and a Linksys router

    I run a bed and breakfast. I have a Linksys router (EA6200). Through the Linksys support, I have found solutions to help the sign in page appear for my guests in IE and Google Chrome. Unfortunately, it still doesn't load in Firefox.
    I want this to work just like when you go into a coffee shop or a fast food restaurant with WiFi. I don't want to be telling guests that they must do this or that unless it is really simple to do.
    Any reason why this doesn't work in Firefox and how to correct it?

    Hi stevensj5, none of those worked: reload bypassing cache, going to a new site not visited before, or running a search from the search bar?
    I wonder whether part of the problem is HTTPS. If you request a regular HTTP page does the router intercept it?

  • Use HH2 as modem for Linksys router

    OK, so i have BT broadband and the HH2. I live in a flat with 5 other people, and we need the QoS capabilities of the Linksys WRT54GL.
    To get internet working i need to use the HH2 as a modem that plugs into the Linksys router.
    Iv followed a few guides on these forums but none of them worked.
    S basically right now the HH2 is connected to the ADSL line then from its ethernet port 1 its connected to the linksys's internet ethernet port. I have disabled firewalls on both devices and DHCP on the linksys.
    I am now stuck for ideas...
    So please could someone give me step by step instructions on how to get this setup to work?
    Thanks alot

    1. Using a PC wired into the current router, unplug it from the wired connection and plug into a LAN port on the secondary router. Access the secondary router using your browser via its default LAN IP address and default password. Since the PC was attached to the previous router you will have tell the PC to obtain a LAN IP from the new device. Use 'ipconfig release/renew'  on the PC.
    2. On the secondary router (hereafter called the AP)
    a. change the default password to a minimum combination of 8 letters/numbers/symbols.
    b. Change the ESSID to a unique name and make all the necessary wireless configurations.
    Note: If attaching a WiFi router as an AP/switch to an existing wifi network, one should keep the ESSIDs the same for seamless roaming, or separate if one wants to manually decide which AP to connect to. Also, ensure channel separation (1-6-11 common for three devices).
    3. In the AP, go to the LAN setup page:
    a. Turn DHCP serving OFF.
    b. Change the LAN IP of the AP from its default so that it lies within the subnet of the primary router but preferably outside the dynamic LAN IP range of the primary router. (examples below)
    c. Disable or turn RIP off, if there is that option.
    d. Disable or turn off Universal Plug and Play (UPnP) support (if any).
    4. Plug the PC back into the wired connection and repeat the process of getting new LAN IP. A reboot of the PC may be needed.
    5. Plug the AP into the router, LAN port TO LAN port directly or via switch/patch panel etc. (NOT into the WAN socket...)
    6. It may be necessary to reboot one or both routers but one should be able to assign LAN IPs wirelessly and connect at this point, ensuring WiFi card setup properly.
    Example:
    Primary Router
    LAN IP 192.168.1.1
    old Dynamic DHCP Pool 192.168.1.2 - 192.168.1.xx
    subnet mask 255.255.255.0
    Will need to change Dynamic DHCP pool
    new DCHP Pool 192.168.1.33 - 192.168.1.xx (for example)
    Subnet mask 255.255.255.0
    Secondary Router (our Access Point)
    old LAN IP 192.168.0.1 -or any other default
    Will need to change LAN IP to be within subnet of primary.
    new LAN IP 192.168.1.2
    Subnet mask 255.255.255.0
    Shouldn't need a crossover cable (most routers are intelligent enogh to realise what they're connecting to)
    Hope this helps...
    Al
    There are 11 kinds of people in the world..... Those who understand binary, those who don't and those, like me, who wish they'd never heard of it...

  • Using AirPort Extreme with a linksys router--advisable?

    I've been told that only 4 Windows Home version machines can connect at a time to any router so connecting AirPort through a linksys router and then to the modem will enable more Windows connections than AirPort Extreme alone (8 vs. 4). Is this true and if so, are there any drawbacks to setting it up this way?  Will AirPort Extreme still function as well as if it is connected directly to the modem without a linksys router?

    I've been told....
    They are pulling your leg. The AirPort Extreme can handle up to 50 wireless connections. We have 30+ PC laptops running at my grandson's school all connected to one AirPort Extreme.
    Don't know about the Linksys, but imagine that it is about the same. If you have the model number, check on a Linksys support area or post back and someone here may know.
    What is possible.....is that someone configured a router to only allow 4 devices to connect. There are various ways that this could have been done.

  • Problem in using XSQL-session and connecting database

    Hello
    Let me explain clearly. We have some data entry screens for which we want to use session with time out option. Normally in Servlet, we use to create a session with max age option. Then everytime the browser call the servlet we use to check for session.isnew(). If it is new session then we will forward the page to Relogin (because session is timed out) or we proced with further action.
    In XSQLServlet, how will do this. Do I have to create my own servlet extended from XSQLServlet ? Override the Service method and write about the session part and call
    super(). Here only I am getting confused. In servlet mapping we have given for every .XSQL call run the XSQLServlet. How will I override this ?
    And also we have problem with user id and password. We don't want to use the same id (system id as defined in XSQLConfig.xml) for every database connection. We want to define only the connection information like SID, Server, Port number. But user id and password should be dynamic. How can I achieve this ?
    Please help us on solving these problem. Thanks.
    Lakshmi
    null

    You'll need to implement your own classes that implement the:
    oracle.xml.xsql.XSQLConnectionManagerFactory
    and
    oracle.xml.xsql.XSQLConnectionManager
    to change the way XSQL handles connections. Using this mechanism, you should be able to implement any alternative connection scheme you choose.
    If you run into problems implementing these interfaces, give us a shout here in the forum.

  • Problem in using LIKE expression and mapping relationship: @OTM / @MTO???

    Hi there,
    I have 2 entity classes:
    @Entity
    @Table(name = "DT_KHV_DTL", schema = "DTKB", uniqueConstraints = {})
    public class VoucherDtlEnt {
    bq.      private String id; \\     private DuAnEnt duAnEnt; \\     //... others
    bq.      @Id \\     @Column(name = "ID", unique = true, nullable = false, insertable = true, updatable = false)
    bq. public String getId() {
    bq. bq. return id;
    bq.      } \\     public void setId(String _id) {
    bq. bq. this.id = _id;
    bq. }
    bq.      @ManyToOne(targetEntity = DuAnEnt.class) \\     @JoinColumn(name = "DA_ID")
    bq. public DuAnEnt getDuAnEnt() {
    bq. bq. return this.duAnEnt;
    bq.      } \\     public void setDuAnEnt(DuAnEnt _duAnEnt) {
    bq. bq. this.duAnEnt = _duAnEnt;
    bq. }
    bq. //... others
    @Entity
    @Table(name = "DT_TTDA_C", schema = "DTKB", uniqueConstraints = {})
    public class ProjectEnt {
    bq. private String id; \\ //... others
    bq.      @Id \\     @Column(name = "ID", unique = true, nullable = false, insertable = true, updatable = false)
    bq. public String getId() {
    bq. bq. return id;
    bq.      } \\     public void setId(String _id) {
    bq. bq. this.id = _id;
    bq. } \\ //... others
    bq.
    I want to list details-vouchers which have project id like the search parameter. In SQL this will be: SELECT * FROM DT_KHV_DTL a WHERE a.DA_ID LIKE ?
    I've tried in JPQL with this query:
    bq. SELECT voucherDtlEnt FROM VoucherDtlEnt voucherDtlEnt WHERE voucherDtlEnt.projectEnt.id LIKE :projectId
    Of course it's work but it make a big problem: it will generate a JOIN SQL query like that:
    bq. SELECT t0.id ... FROM DT_KHV_DTL t0, DT_TTDA_C t1 WHERE t0.DA_ID = t1.ID AND t1.ID LIKE ?
    In my real case, the project number is around 10.000, this generation take me from 0.1s in SQL to minutes in JPQL, even in complex situation, it freeze the application server.
    In other case without LIKE, this will be done with:
    bq. SELECT voucherDtlEnt FROM VoucherDtlEnt voucherDtlEnt WHERE voucherDtlEnt.projectEnt = :projectEnt
    which perform a true SQL:
    bq. SELECT t0.id ... FROM DT_KHV_DTL t0 WHERE t0.DA_ID = ?
    So, I've tested:
    bq. SELECT voucherDtlEnt FROM VoucherDtlEnt voucherDtlEnt WHERE voucherDtlEnt.projectEnt LIKE :projectEnt --&gt; Error cause LIKE expression only apply for String type
    bq. SELECT voucherDtlEnt FROM VoucherDtlEnt voucherDtlEnt WHERE voucherDtlEnt.projectEnt LIKE :projectId --&gt; Error cause can't compare 2 dif class: ProjectEnt and String
    Have any solution ???
    +I'd happy if the generator don't check type String in
    the query:+
    bq. SELECT voucherDtlEnt FROM VoucherDtlEnt voucherDtlEnt WHERE voucherDtlEnt.projectEnt LIKE :projectEnt
    instead just check inserted entity have an Id in String type, so can threat this like the '=' expression case.
    bq.

    After review, I've found the problem is not in JOIN but stupid generator do one like this:
    SELECT t0.id ... FROM DT_KHV_DTL t0,{color:#ff0000} DT_KHV_DTL t2{color}, DT_TTDA_C t1 WHERE t0.DA_ID = t1.ID AND t1.ID LIKE ?
    In SQL native query, cause t2 don't identify join column with t0, it will make a big problem that must remove this or just add AND t0.ID = t2.ID
    I'm using Oracle Application Server 10.0.1.3 and have any fixed this in newer versions???
    Still trying to REMOVE

  • Problem with Using Spring IoC and Web Start

    Greetings Everyone,
    I have a small Swing app that runs using spring to load its dependencies. I can run it from a single signed jar file locally, and I setup my .jnlp file to try it with Web Start.
    Unfortunately, I get the following:
    java.security.AccessControlException: access denied (java.lang.RuntimePermission accessDeclaredMembers)
         at java.security.AccessControlContext.checkPermission(AccessControlContext.java:323)
         at java.security.AccessController.checkPermission(AccessController.java:546)
         at java.lang.SecurityManager.checkPermission(SecurityManager.java:532)
         at java.lang.SecurityManager.checkMemberAccess(SecurityManager.java:1662)
         at java.lang.Class.checkMemberAccess(Class.java:2157)
         at java.lang.Class.getDeclaredMethods(Class.java:1790)
         at org.springframework.util.ReflectionUtils.doWithMethods(ReflectionUtils.java:429)
         at org.springframework.util.ReflectionUtils.doWithMethods(ReflectionUtils.java:412)
         at org.springframework.orm.jpa.support.PersistenceAnnotationBeanPostProcessor.findPersistenceMetadata(PersistenceAnnotationBeanPostProcessor.java:363)
         at org.springframework.orm.jpa.support.PersistenceAnnotationBeanPostProcessor.postProcessMergedBeanDefinition(PersistenceAnnotationBeanPostProcessor.java:296)
         at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.applyMergedBeanDefinitionPostProcessors(AbstractAutowireCapableBeanFactory.java:745)
         at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:448)
         at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory$1.run(AbstractAutowireCapableBeanFactory.java:409)
         at java.security.AccessController.doPrivileged(Native Method)
         at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:380)
         at org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:264)
         at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:221)
         at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:261)
         at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:185)
         at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:164)
         at org.springframework.context.support.AbstractApplicationContext.getBean(AbstractApplicationContext.java:881)
         at org.springframework.context.support.AbstractApplicationContext.registerBeanPostProcessors(AbstractApplicationContext.java:597)
         at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:366)
         at org.springframework.context.support.ClassPathXmlApplicationContext.<init>(ClassPathXmlApplicationContext.java:139)
         at org.springframework.context.support.ClassPathXmlApplicationContext.<init>(ClassPathXmlApplicationContext.java:83)
         at org.chibgrant.main.MainPOE.main(MainPOE.java:31)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at com.sun.javaws.Launcher.executeApplication(Launcher.java:1321)
         at com.sun.javaws.Launcher.executeMainClass(Launcher.java:1267)
         at com.sun.javaws.Launcher.doLaunchApp(Launcher.java:1066)
         at com.sun.javaws.Launcher.run(Launcher.java:116)
         at java.lang.Thread.run(Thread.java:619)
    I am running build 1.6.0_13-b03. Anyone run into this before?
    Thanks for any insights...!

    I suspect you may have solved this yourself by now, but in case not.
    I've recently created a desktop application that uses Spring and is launched via Java Web Start and I did have a problem getting it to launch via Web Start until I modified my code to ensure the classloader setup is done before any Spring methods are called.
    i.e.
        // This is needed for Java Web Start compatibility.
        UIManager.getLookAndFeelDefaults().put("ClassLoader", Loader.class.getClassLoader());In may application this code is invoked in the class that starts my application (Loader) before I load anything via Spring.
    Cheers,
    Stephen.

  • Urgent: Some Problem on using Oracle Developer and Oracle 8i

    I have download the Oracle Developer from this website.
    I follow the instruction and install the Oracle Developer.
    After I finished install the Developer, a error message shows:
    "user1.pin(20):OS_ERROR whilw spawing if srv60-install Forms60Server -OraHome81d2 port:900mode:Socket batch:yes."
    When I login in the SQL Plus 8i using User name: sys
    A error message shows "ORA:122-03: Unable to connect to destination"
    I can't use the Scheme Builder also and when I open the Net8 Assistant, I can't close the program in a normal way:
    Click X on the corner/ Click File->Exit.
    Would you help me to solve this problem? Thanks!

    The problem that u are unable to login into sql prompt is may be that, you havent install the database or if u have installed it u havent started it.
    If u are using windows nt,2000,xp then u can start it from services which is under administrative tools or if u are using 95 or 98 then u have to start the database from the program menu.
    The problem that developer net8 assistant doesnt exit is a reality and i also face this problem, I think it is a bug of oracle, and if i started it, i have to endtask it.
    Bye
    Hasan

  • Facing problem while using apps world and games

    Hi ,
    i bought blackberry z3 1 week ago, when i want to download apps from blackberry world its show a message that " AN ERROR OCCURED WHILE PROCESSING YOUR REQUEST "
    AND OTHER PROBLEM WHILE GOING TO GAMES APPS IT SHOWS THAT "AN ERROR OCCURED.PLEASE TRY AGAIN LATER( SC_HTTP_server_ERROR).
    PLS HELP ME AS SOON AS POSSIBLE.
    THANK YOU

    Hi and Welcome to the Community!
    First:
    http://kathrynvercillo.hubpages.com/hub/What-People-Think-When-You-Type-in-All-Caps
    Now, please try this process.
    With a strong carrier network signal (e.g., not merely WiFi), I suggest the following steps, in order, even if they seem redundant to what you have already tried (step 1 should result in a message coming to your BB...please wait for that before proceeding to the next step):
    1) Register HRT
    KB00510 How to register a BlackBerry smartphone with the wireless network
    Please wait for one "registration" message to pop up
    2) Reboot
    Hold the top button down until the counter reaches zero. Wait for the device to be fully shut down (e.g., nothing at all displayed on the screen, no LED lights, etc.). Hold the top button until the red LED is lit. Wait through the full boot-up process. IF this fails, you can attempt a harsher method by holding down the up/down volume keys together until the device has fully shut down.
    See if things have returned to good operation. Like all computing devices, BB's suffer from memory leaks and such...with a hard reboot being the best cure.
    Hopefully that will get things going again for you.
    Good luck and let us know!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

Maybe you are looking for

  • MC.A,MC.B,MB5B,MB58 How to make it usefull for Canadians?

    Hi, We need an AUM option in selection screen & Output of MB5B. Users can know what was available in stock on a prior day when trying to re-concile inventory? Is there any Standard setting to do this kind of things or will it be possible only with Z

  • 2nd display connected to iMac stays black (Thunderbolt - HDMI)

    Hi everyone, with my new iMac (purchased 2 weeks ago) I have the problem that my 2nd display will stay black after I connected it to the Thunderbolt port. The display shows the blue background for a split second, then i goes black (and stays that way

  • Oracle  10g_win32_db with patch PATCH 3837371 cant find OEM or Worksheet

    I just installed Oracle10g with patch 3837371. I am unable to find OEM or SQLPlus Worksheet in my Start->Programs->Oracle. I have been able to locate the HTTP version of Enterprise Manager via going straight to the internet, but there is still no lin

  • Hi. I have a problem with an extension.

    Just bought a beauty action pack and turned out it is a wrong format(mxp) and not supported by CC. Tried converting into zxp in extension manager but it doesn't seem to be working. No converted copy appears in the folder. What should i do now?

  • Execute script from ODI

    Hi ODI Gurus, I need to execute unix scripts which will internally call java programs from ODI. I am trying using the packagae - OS Command option but it is saying "Wrong process return code" Appreciate your inputs ? Best Regards Arc