Problem with network connection names and cluster

Hi,
Before talking about my problem, I want to apologize if this is not the correct forum, but it is the more adecuated that I have found. Is about a problem in Windows 2000, which I know it is out of support, but in my company I still have to administer several
hundreds of them.
I have several Windows 2000 failover clusters, and all of them show the same problem, which consists of the following:
Each cluster has two nodes. Each node has 5 network adapters. Each adapter hosts a connection  name: Lan-1 is the name of the network associated to adapter 1, Lan-2 to adapter 2, and so on till Lan-5 to adapter 5.
Lan-5 is used as heartbeat for the cluster: is connected to the Lan-5 in the other node via a cross-over UTP cable. 
Lan-1 and Lan-2 in each node, forms a network team named TEAM, used to access to the nodes for administration via remote desktop.
Last, each node has Lan-3 and Lan-4. Lan-3 is used for the cluster resources, and Lan-4 as a backup, just in case Lan-3 fails. 
And now, the strange and surprising thing: if I change the name of Lan-4, or change any configuration of the connection, the name changes to Lan-4(2). If I make any other change, the name changes again to Lan-4(2)(2). I can't get rid of the numbers between
parentesis, and the number of them grows and grows.
Any idea about what is happening?

Hi,
As you mentioned, the Windows 2000 has already stop supported, personal experience is you can try to use the cmdlet ipconfig /all to show if the network adapter name is right
or not, or you can try to remove the lan3 adapter register information (backup first) and driver then restart to monitor the status
More information:
How to remove network adapters from the registry
http://support.microsoft.com/kb/146333/EN-US
Manually Removing Network Adapter Entries from the Registry
http://support.microsoft.com/kb/146333/EN-US
Hope this helps.
We
are trying to better understand customer views on social support experience, so your participation in this
interview project would be greatly appreciated if you have time.
Thanks for helping make community forums a great place.

Similar Messages

  • SAP Screen Personas error "A problem with network connectivity has been detected"

    Hi,
    We just installed Personas release 100 SP02 and performed the
    configuration steps necessary. But when we acces the url and logon to
    personas we get the following erre
    A problem with network connectivity has been detected.
    Please check you connection and refresh your browser.
    Any help to solve this issue would be appreciated.
    Best Regards.

    Please use this checklist to see if everything is correct:
    1. restgui service handler class has CL_HTTP_EXT_ITS_BASIC
    2. SPRO -> Sap screen Personas -> Maintain system has
           - 3 letter system id
           - "Server.Url" without typo and value in http(s)://<SERVER>:<PORT>/ format 
           - "Service.Uri" without typo and value as /restgui
    3, Note 2026487 is installed
    4. If target system is different from source system then you are able to access the following
             - http(s)://<TARGETSERVER>:<PORT>/clientaccesspolicy.xml
             - http(s)://<TARGETSERVER>:<PORT>/crossdomain.xml
    5. role is assigned to user under /n/persos/admin_ui -> User Maintenance -> Search -> Show user -> Role
    If you still get error, then if you are using SSO, please check if you have configured login/create_sso2_ticket parameter correctly.
    Thanks
    Chinthan

  • Upgrading to 6.1.1 hasn't solved the problem with network connection on 4S. Still "No Servise"!

    Upgrading to 6.1.1 hasn't solved the problem with network connection on 4S. Still "No Servise"!

    Same here.  Everything was fine running on ios 6.0, I don't know what possessed me to upgrade!  I contacted O2 and thet went through the usual settings; reboot; airplane mode etc and it works for a while (like 5 mins) then service is losted with the network.  I've even deleted the exchange email account and rebooted as read on the internet that this would fix the problem.... guest what....yep no joy!  This is clearly a faulty software update and need fixing pronto!  I've read that ios6.1.2 will be out soon to fix the firmware that was suppose to fix the initial network problem.   When will this be realeased Apple?!  It's hardly fit for purpose when I can't make calls or surf the internet. 

  • Problem with creating Connection pool and JNDI, driver is not detected

    Hi,
    I have an issue with creating Connection Pool and JNDI.
    I'm using:
    - JDK 1.6
    - OS: Linux(ubuntu 8.10)
    - Netbeans IDE 6.5.1
    - Java EE 5.0
    - Apache Tomcat 6.0.18 Its lib directory contains all necessary jar files for Oracle database driver
    - Oracle 11g Enterprise
    My problem is that the Oracle database driver is not detected when I want to create a pool (it works pretty well and is detected without any problem when I create ordinary connection by DriverManager)
    Therefore after running:
    InitialContext ic = new InitialContext();
    Context context = (Context)ic.lookup("java:comp/env");
    DataSource dataSource = (DataSource)context.lookup("jdbc/oracle11g");
    Connection connection = dataSource.getConnection();and right after dataSource.getConnection() I have the following exception:
    org.apache.tomcat.dbcp.dbcp.SQLNestedException: Cannot load JDBC driver class 'oracle.jdbc.OracleDriver'
    at org.apache.tomcat.dbcp.dbcp.BasicDataSource.createDataSource(BasicDataSource.java:1136)
    at org.apache.tomcat.dbcp.dbcp.BasicDataSource.getConnection(BasicDataSource.java:880)
    at servlets.Servlet1.doPost(Servlet1.java:47)
    at servlets.Servlet1.doGet(Servlet1.java:29)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:617)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:286)
    at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:845)
    at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583)
    at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)
    at java.lang.Thread.run(Thread.java:619)
    Caused by: java.lang.ClassNotFoundException: oracle.jdbc.OracleDriver
    at java.net.URLClassLoader$1.run(URLClassLoader.java:200)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
    at sun.misc.Launcher$ExtClassLoader.findClass(Launcher.java:229)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:252)
    at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:320)
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Class.java:169)
    at org.apache.tomcat.dbcp.dbcp.BasicDataSource.createDataSource(BasicDataSource.java:1130)
    ... 17 more
    My application context file (context.xml) is:
    <?xml version="1.0" encoding="UTF-8"?>
    <Context path="/WebApplication3">
      <Resource auth="Container"
                      driverClassName="oracle.jdbc.OracleDriver"
                      maxActive="8"
                      maxIdle="4"
                      name="jdbc/oracle11g"
                      username="scott"
                      password="tiger"
                      type="javax.sql.DataSource"
                      url="jdbc:oracle:thin:@localhost:1521:database01" />
    </Context>and my web.xml is:
        <resource-ref>
            <description>Oracle Datasource example</description>
            <res-ref-name>jdbc/oracle11g</res-ref-name>
            <res-type>javax.sql.DataSource</res-type>
            <res-auth>Container</res-auth>
        </resource-ref>
    ...I found similar threads in different forums including sun, such as
    http://forums.sun.com/thread.jspa?threadID=567630&start=0&tstart=0
    http://forums.sun.com/thread.jspa?threadID=639243&tstart=0
    http://forums.sun.com/thread.jspa?threadID=5312178&tstart=0
    , but no solution.
    As many suggest, I also tried to put context directly in the server.xml (instead of my application context) and referencing it by <ResourceLink /> inside my application context but it didn't work and instead it gave me the following message:
    org.apache.tomcat.dbcp.dbcp.SQLNestedException: Cannot create JDBC driver of class '   ' for connect URL 'null'
    Has anyone succeeded in creating a connection pool with JNDI by using Tomcat 6 or higher ? If yes, could kindly explain about the applied method.
    Regards,

    Hello again,
    Finally I managed to run my application also with Tomcat 6.0.18. There was only two lines that had to be modified
    in the context.xml file (the context of my application project and not server's)
    Instead of writing
    <Context antiJARLocking="true" path="/WebApplication2">
        type="javax.sql.DataSource"
        factory="org.apache.tomcat.dbcp.dbcp.BasicDataSourceFactory"
    </Context>we had to write:
    <Context antiJARLocking="true" path="/WebApplication2">
        type="oracle.jdbc.pool.OracleDataSource"
        factory="oracle.jdbc.pool.OracleDataSourceFactory"
    </Context>- No modification was needed to be done at server level (niether server.xml nor server context.xml)
    - I just added the ojdbc6.jar in $CATALINA_HOME/lib (I didn't even need to add it in WEB-INF/lib of my project)
    - The servlet used to do the test was the same that I presented in my precedent post.
    For those who have encountered my problem and are interested in the format of the web.xml and context.xml
    with Tomcat 6.0, you can find them below:
    Oracle server: Oracle 11g Enterprise
    Tomcat server version: 6.0.18
    Oracle driver: ojdbc.jar
    IDE: Netbeans 6.5.1
    The context.xml file of the web application
    <?xml version="1.0" encoding="UTF-8"?>
    <Context antiJARLocking="true" path="/WebApplication2">
        <Resource name="jdbc/oracle11g"
                  type="oracle.jdbc.pool.OracleDataSource"
                  factory="oracle.jdbc.pool.OracleDataSourceFactory"
                  url="jdbc:oracle:thin:@localhost:1521:database01"
                  driverClassName="oracle.jdbc.OracleDriver"
                  userName="scott"
                  password="tiger"
                  auth="Container"
                  maxActive="100"
                  maxIdle="30"
                  maxWait="10000"
                  logAbandoned="true"
                  removeAbandoned="true"
                  removeAbandonedTimeout="60" />
    </Context>The web.xml of my web application
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
        <resource-ref>
            <description>Oracle Database 11g DataSource</description>
            <res-type>oracle.jdbc.pool.OracleDataSource</res-type>
            <res-auth>Container</res-auth>
            <res-ref-name>jdbc/oracle11g</res-ref-name>
        </resource-ref>
        <servlet>
            <servlet-name>Servlet1</servlet-name>
            <servlet-class>servlets.Servlet1</servlet-class>
        </servlet>
        <servlet-mapping>
            <servlet-name>Servlet1</servlet-name>
            <url-pattern>/Servlet1</url-pattern>
        </servlet-mapping>
        <session-config>
            <session-timeout>
                30
            </session-timeout>
        </session-config>
        <welcome-file-list>
            <welcome-file>index.jsp</welcome-file>
        </welcome-file-list>
    </web-app>Ok, now I'm happy as the original problem is completely solved
    Regards

  • Windows 10 for phones emulators on Windows 10 10041 - problem with network connection

    Hi,
    I can't connect to Internet on Windows 10 mobile emulators on Windows 10041. I have tried to resolve problem. First I noticed, there was problem with displaying properties main network connection. I had reinstalled network driver. After that I reinstalled
    Hyper-V on Windows and recreated virtual machines for mobile emulators. Nothing helps.
    On the same machine Windows Phone 8.1 emulator on Windows 8 has access to Internet.
    I don't know if there was issue which is discribed
    http://blogs.msdn.com/b/wsdevsol/archive/2013/10/01/why-can-t-the-windows-phone-emulator-go-online.aspx, becuse the same configuration I have on Windiows 8.1 and Windows 10 and on Windows 8.1 I have access and on Windows 10 I haven't.
    Martin

    I just disabled bluetooth connection in Network Connections panel and I have access to Internet in Windows 10 emulator!

  • Problem with severe connection fail and slow inter...

    Havin problem with several automatic disconnection, slow internet and cant get inside online bt repair centre coz its sayin - this no is not provided by bt business...
    ADSL Line Status
    Connection Information
    Line state: Connected
    Connection time: 2 days, 06:57:44
    Downstream: 1.122 Mbps
    Upstream: 80 Kbps
    ADSL Settings
    VPI/VCI: 0/38
    Type: PPPoA
    Modulation: G.992.5 Annex A
    Latency type: Interleaved
    Noise margin (Down/Up): 4.0 dB / 7.2 dB
    Line attenuation (Down/Up): 65.0 dB / 34.6 dB
    Output power (Down/Up): 19.1 dBm / 10.0 dBm
    FEC Events (Down/Up): 9019906 / 503
    CRC Events (Down/Up): 656 / 131
    Loss of Framing (Local/Remote): 0 / 0
    Loss of Signal (Local/Remote): 0 / 0
    Loss of Power (Local/Remote): 0 / 0
    HEC Events (Down/Up): 5492 / 23
    Error Seconds (Local/Remote): 62 / 33

    as you are a business user you need to post on the business forum https://business.forums.bt.com/
    this forum is for residential customer
    If you like a post, or want to say thanks for a helpful answer, please click on the Ratings star on the left-hand side of the post.
    If someone answers your question correctly please let other members know by clicking on ’Mark as Accepted Solution’.

  • Problem with camera connection kit and IOS 5

    Since I upgraded my IPAD 2 to IOS 5 camera connection kit is no longer working properly:
    - when importing from a given CF card for the first time camera connection kit it is working with my camera (Canon EOS 7D)
    - however, as soon as i take additional photos on a non-empty CF card, things start getting weird when importing:
       - duplicates are no longer reliably recognized (some of the photos imported before are indicated as duplicates others not), hence an incremental upload of photos is no longer viable
         - some RAW photos are corrupted during import (it shows an "RAW" icon in the photo app, but no preview and the photo cannot be enlarged)
    I never had such problems with IOS 4.x I'm really frustrated about IOS 5.0 since camera conenction kit and the ability to deal with RAW photos were my main reasons to buy an IPAD...
    Anybody experiencing  similiar problems? Any viable workarounds?
    Thanks
    Claudio

    Friend, you say "The files must have a filename with exactly 8 characters long (no spaces)"  What if one has several hundred photos/files. Renameing them on my computer each 8 characters long adds an extension (1), (2), (3), and so on. For example, "JUNE2014(1).  The connection kit won't read the photos due to the extra (1).  How can I fix this without having to rename each of the hundreds of photos one by one?
    Thank you, Cisco.

  • Weird problem--lost network connectivity wifi and ethernet. Intermittent

    I'm posting to this board because my Time Capsule is my router and I suspect this is a router table issue since it affects both wifi and ethernet computers in my household.  It only affects the two computers on 10.8.3 at the moment. 
    Either just after waking from sleep or after working for quite some time on either of these computers, web sites will stop loading.  It gives an SSL error but they are not secure sites.  Mail stops coming in as well.  This is true for any browser.  The network connections test as "green" with the built-in diagnostics tools.  The only fix I have found is to either restart the machine or simply log out and log back in from the user account.  It is very frustrating because we are often working in real-time online.  Standard things we use that are affected are Google Docs for schoolwork etc. and my son's Minecraft playing.  It is especially frustrating for him because he could be in the middle of a "project" with some of his friends online and this essentially crashes what they were doing.
    I have called Apple but it is very hard to explain the issue in an effective manner.
    Both machines are logged in as managed accounts but unrestricted access.  I just don't like my primary account to be an admin account.  I don't want my kids to install stuff without my permission and the managed user allows me to inspect the logs of sites they have visited at the system level, even if they turn on private browsing in Safari or incognito in Chrome.
    Does anyone here have any ideas?

    It is possible that I upgraded the firmware on the router right when I upgraded the machine to Mountain Lion but I really don't think I did that. I also have a version of the OLD airport utility so I can see the Time Capsule in much more detail.
    Linda
    If it hasn't reminded you to upgrade the firmware in the last day or so it is already on 7.6.3.. Apple stuff is very insistent on upgrades..
    In the old utility (excellent) take it back to 7.6.1. And turn off weekly upgrade reminders.. this will reduce the instances of upgrade reminders to weekly instead of daily.

  • Problems with invalid user name and password

    We have a one week old MacBook 2.2GHz basic white model that is generally working well.
    However a problem has now arisen whereby on any attempt to shutdown or restart it won't accept the administrator user name and password, returning an 'invalid' warning. The issue seems to be the user name as the administrator password has worked OK in other situations. Naturally I have checked and re-checked the user name (which was in the form (first name followed by surname in upper and lower case) and it was OK (in any case it was being prompted automatically by the system.)
    I have subsequently changed the administrator name (to the form first name only in upper and lower) and the password as suggested by the following article:
    http://docs.info.apple.com/article.html?artnum=306876
    Nothing has changed. Can anyone help?

    HI Martin, a late post to confirm the solution from the last post by using the "RETURN" key works..
    (mouse click worked ok in Tiger 10.4.x I thought).
    Tis was a delight and so obvious after seeing these symptoms.
    I have posted this entry in case anyone else get's into this situation since OSX LEopard 10.5. Several people have encountered this issue where they may have:
    • LEopard 10.5.x installed
    • have 2 or more active users LOGGED into the OSX system via fast user / fastuser switching
    • request a SHUTDOWN or RESTART from an user
    • get a OSX request to supply administrator attributed user and it's associated password to validate SHUTDOWN | RESTART request,
    • have admin | root account verification failure of password after 'clicking'.
    After some months of frustration, it seems a simple PRESS of the "RETURN key" works!
    Simply, DON'T mouse click after entering admin user/password.... instead press "RETURN" key.
    fwiw.
    w

  • Problem with external domain name and hosting

    Hi I have my own domain name and hosting plan I want to use. However, I have trouble pointing my site from BC to my server.
    I found the following information but in my case "create A-Records" is not available on the "Site Domains". Please advise.
    Thanks.
    Bonbon668
    Point externally hosted domains to your Business Catalyst site
    If you have chosen to use external DNS service for your domain name, create A-Records for both the www and non-www versions of your domain name. Then, point them to your site, which resides on one of the following IP addresses:

    Hi
    Can you please confirm that there is no “Create A records” option under “More Actions” ?

  • Problem with network connection

    Hi there,
    I just installed Solaris 8 on my P-III machine with 256mb RAM. My network is fully supported by NT servers & machines. I chose to have dynamic IP thro DHCP. The network card present is 3COM. The machine boots up normally, gets an IP address & even telnet is possible from outside. But after a while, the connection dies all of a sudden. I am not able to connect to the server from outside or connect from the server to outside. When I restart the machine the cycle repeats.
    Though the "ifconfig -a" shows that there are 2 interfaces (network card & loopback)with the IP unchanged even after the connection goes.
    Seeking your help,
    PTBabu.

    calling your ISP is actuallyl a good solution, basically a router just depends on the internet connection distributed by the ISP, if it drops then connection in the router would also drop...
    but if it has no problems, you can try upgrading the firmware of your router and try to configure it at the same time..

  • Problems with camera connection kit and charging

    I've got the iPad 1 and recently got a camera connection kit. After I used it, I tried to charge my iPad but it won't charge. The website says to just disconnect then reconnect the charger and it'll charge. I tried it at least four five times. I even tried restarting my iPad several times an it didn't work. Does anyone know how to fix this?

    Do you get the msg at the top of the screen that it's not charging? What if you plug the cable into your computer? Are you sure the 30-pin connector if fully seated?
    Try these.
    Restart the iPad by holding down on the Wake/Sleep (On/Off) button until the red slider appears and then slide to shut Off. To power up hold the Sleep/Wake button until the Apple logo appears and let go of the button.
    Reset the iPad. Note: Reset your device only if it is no longer responding and Restart does not work.
        1.    Begin by pressing the Wake/Sleep (On/Off) and Home buttons at the same time (for about 10-15 seconds). The Wake/Sleep button is the one on the top right corner of the iPad. The Home button is the round one at the bottom center of the iPad's front
        2.    Continue to hold these buttons until one of two things happen: either the screen will flash and go dark, or a red slider will appear at the top of the screen
        3.    If the slider appears, you can slide it to the right to turn off the iPad (or tap the cancel button if you change your mind)
        4.    When the iPad's screen goes dark, the iPad is off
        5.    Restart the iPad by holding down the Wake/Sleep button until the Apple icon appears. Let go of the buttons and the iPad reset will be complete.
    Resetting the iPad shouldn't normally cause you to lose and data or settings.
    How to Restore iPad http://www.ipadtomactransfer.org/ipad-tips/how-to-restore-ipad.html
     Cheers, Tom

  • Every time I try and update my iphone 4 to ios 7.1 in iTunes 11.1.5 it says "connection reset" even when there is no problem with my connection

    I have an iPhone 4. I use iTunes 11.1.5 on my Mac. I am trying to update to ios 7.1 through iTunes, but every time I do that, I get a "connection reset" error, even when I know there has been no problem with my connection.
    The exact error message is as follows:
    "There was a problem downloading the software for the iPhone "Anne's iPhone". The network connection was reset.
    Make sure your network settings are correct and your network connection is active, or try again later."
    I have checked several times. There is no problem with the connection, and I have tried to download the software several times today.
    Any help you can give me would be appreciated.

    Just managed to successfully download the update, having retried five or six times. I did unplug my phone while the download was taking place (had asked iTunes to download only, not to update) -- suspect this had no bearing on it whatsoever, and that persistence is the only way here.

  • Error message in time machine: "There was a problem with the user name or the password of the network

    I have been unable to back up my macbook to my time capsule for some time now. I received the following error message (translated from Swedish) when trying to back up using time machine:
    "The network's volume could not be placed on the desktop. There was a problem with the user name or the password for the network.
    Open system preferences and go to Time Machine. Select the volume for security backup again and state the correct user name and password."
    I have confirmed the network password, and also tried with resetting the password. I have not idea what else to do. Any help is much appreciated.
    Best regards,
    John

    I have been unable to back up my macbook to my time capsule for some time now. I received the following error message (translated from Swedish) when trying to back up using time machine:
    "The network's volume could not be placed on the desktop. There was a problem with the user name or the password for the network.
    Open system preferences and go to Time Machine. Select the volume for security backup again and state the correct user name and password."
    I have confirmed the network password, and also tried with resetting the password. I have not idea what else to do. Any help is much appreciated.
    Best regards,
    John

  • My itunes account shuts down for no reason.  It wont recognize my iphone and there is an issue with network connectivity and itunes.  I have already  reinstalled itunes and did a syste restore on my computer, firewall checked and virus scan done.  Ideas??

    My itunes account on windows xp shuts down for no reason.  If even try to delete something from my library it shuts down.   It wont recognize my iphone and there is an issue with network connectivity and I can't connect to the store.  I have already  reinstalled itunes and did a system restore on my computer, firewall has been checked, itunes is ok on firewall and virus scan done.  Ideas??

    Same problem. I can see the itunes store so not a problem with windows firewall. The account is active on my iphone so i know i am not locked out. I can connect the PC to my iphone so i know itunes is working ok. It is just logging into itunes on this pc which doesn't work. Only thing I can think of is that the email address I use for my apple id has been offline for a while and is working again now, I'm wondering whether this has been the case for others who are having this issue?

Maybe you are looking for

  • A problem with Itunes and adding music to library

    I've been using my Ipod touch for about a month now (recently purchased). I first connected my Ipod to my laptop, because my desktop needed a format and reinstall of the OS, so I wanted to be slightly organized with it. I finally got around to format

  • Sdi to dvi out vs. dvi preview monitor

    i have an aja kona lhe pci express card with sdi out. i am getting another dell 24" 1920x1080 monitor for playback of hd. if i go with the kona as an output, i still need the sdi to dvi converter box ($700). is there a real picture quality difference

  • Character value can display automatically

    Dear Experts, i have a question for character value. In BW, we have master data for PH1-PH6. And if you know the PH6, there is unique value for PH1-PH5. For example, if PH6 = 111111, PH1 = 1, PH2 = 11, PH3 = 111,etc. This value is unique. Now we have

  • Hi, help me on how to work with datasets

    hi, this is bsv. can any one help me on how to work with datasets. regards... srinivas

  • There are three tones that did not transfer back to my iphone how do I do that

    I got another iphone, I had some ringtones that I was able to drag back to my new iphone with no problem but I had a tone like a text tone that I cannot get back to my iphone, I wonder if I have to purchase it again.