Does anybody know step to install JDBC driver?

Hi
All,
I have windows xp and i want to install jdbc driver for jdk 1.5.. I have downloaded ojdbc14.jar. but I don't know how to execute that file. I have tried with
java -jar ojdbc14.jar
it gives me following output
C:\>java -jar c:\ojdbc14.jar
Failed to load Main-Class manifest attribute from
c:\ojdbc14.jar
so it is not working.
does anybody know step to install JDBC driver?
Thanks,
Vishal
Message was edited by:
vishal patel
Message was edited by:
vishal patel

The JDBC drivers aren't "installed" like application software. The ojdbc.jar file is a library that contains the driver. To use it in a Java program, two steps are required:
(1) Invoke the driver (using the Class.forName() method is most common), and
(2) include the library in the class path when you run your program.
Here is a sample program I have put together to illustrate:
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
public class JDBCTest {
     public static void main(String args[]) throws SQLException, ClassNotFoundException {
          Class.forName("oracle.jdbc.OracleDriver");
          String dbString = "jdbc:oracle:thin:@localhost:1521:xe";
          String username = "forums";
          String password = "forums";
          Connection connection = DriverManager.getConnection(dbString, username, password);
          Statement statement = connection.createStatement();
          ResultSet rs = statement.executeQuery("select 'hi' as my_column from dual");
          while(rs.next())
               System.out.println(rs.getString("MY_COLUMN"));
          rs.close();
          statement.close();
          connection.close();
}Below, I compile and run this program. You can see the necessity of including the JAR in the class path:
C:\workspace>javac JDBCTest.java
C:\workspace>java JDBCTest
Exception in thread "main" java.lang.ClassNotFoundException: oracle.jdbc.OracleDriver
        at java.net.URLClassLoader$1.run(Unknown Source)
        at java.security.AccessController.doPrivileged(Native Method)
        at java.net.URLClassLoader.findClass(Unknown Source)
        at java.lang.ClassLoader.loadClass(Unknown Source)
        at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
        at java.lang.ClassLoader.loadClass(Unknown Source)
        at java.lang.ClassLoader.loadClassInternal(Unknown Source)
        at java.lang.Class.forName0(Native Method)
        at java.lang.Class.forName(Unknown Source)
        at JDBCTest.main(JDBCTest.java:9)
C:\workspace>java -cp ojdbc14.jar;. JDBCTest
hi
C:\workspace>Although no classes in this JAR file are explicitly used by the program (other than the Class.forName() line), it is necessary. Without it, the JVM will return the following error message (to see this first-hand, simply comment out the Class.forName() line in the above program):
C:\workspace>java -cp ojdbc14.jar;. JDBCTest
Exception in thread "main" java.sql.SQLException: No suitable driver found for jdbc:oracle:thin:@localhost:1521:xe
        at java.sql.DriverManager.getConnection(Unknown Source)
        at java.sql.DriverManager.getConnection(Unknown Source)
        at JDBCTest.main(JDBCTest.java:15)Kind regards,
Christopher L. Simons

Similar Messages

  • Does anybody knows how to install Windows 7 from a USB drive on 2010 MacBook Air running Lion?

    Does anybody knows how to install Windows 7 from a USB drive on 2010 MacBook Air running Lion?

    Tell my wife that!
    This is the best I can do. This way you can use the 2011 MBA way to do things.
    Look for the post from @jacktourist. (on page 2 about half way down) This seems to be the easiest.
    There are a couple of more similar to this with pictures I've seen around but can't remember where.
    Here's another search with added info. It's easier then it sounds.

  • Hello guys..does anybody know how to install and use adobe master collection with the new lion?   I need to use Flash and illustratore, but apparently those programmes are incompatible with the new operative sistem...   I am a new mac users and I'd like t

    Hello guys..does anybody know how to install and use adobe master collection with the new lion?
    I need to use Flash and illustratore, but apparently those programmes are incompatible with the new operative sistem...
    I am a new mac users and I'd like to know if there are other similar programmes I can use with lion!

    Lab79 wrote:
    Are you on Apple's payroll?
    well dude I can only let you know that as I work with those programme I don't have to pay for it is my company that pays the programme I whant to use( that's why I was asking if there where other programmes ..that I could use with lion insted that Illustrator and Flash!)..I know Adobe since 2005 and I can say that Adobs products are very good...I think that if it's an Adobe probleme or fault ..they will solve it very soon...but unfortunally I have the impression that after Jobs passed away Appel decided to change politics..and everything started to go very bad! (see FCP X)..
    good luck with apple dude..
    Where is the Apple problem? I have CS4 and CS5 running perfectly fine on my Macbook Pro. Installed 5 after Lion upgrade. Worth every cent. Adobe did have some catching up to do with Lion but with the CS5.5 update all runs fine. But not yours. So it is a problem with the Lion OS? You say you have been with Adobe since 2005. So you would be aware of all the other issues that Adobe had catching up with past Oss in Mac and Windows then. They get it right, but it is up to them. It is not up to Apple, nor Microsoft for that matter, to run around and check that every software developer in the world is running their business properly.
    And what has politics got to do with anything. Some people just have to blame Software for their poor Hardware maintainence of failure of the same.
    <The only think I can really do is to go back on my old windows...give back this orrible lap top and ask for my money back!>
    Great suggestion. You should go with that one, but good luck getting a refund.
    Bye

  • Does anybody know how to modify the driver for the Tektronix 370A curve tracer so that it will work with the 370B?

    I am trying to control a Tektronix 370B curve tracer using LabView via a GPIB interface. However, there are no drivers available for download for the 370B. There is one available for the 370A, but it is not compatible with the 370B and I have been unable to figure out how to modify it to make it work with the 370B. Does anyone know how to modify this driver, or know of an existing driver that works with the 370B? Thanks!

    Hi S _Bracht,
    Yeah, unfortunately, the Tektronix 370B does not currently have an instrument driver and the driver for the 370A is not supported by National Instruments (it is just posted on our website as a courtesy) - so I am afraid that there is not really any more information on the differences that might exist between the two available from National Instruments.  As an alternative, you can always develop your own driver using the VISA and 488.2 drivers + a copy of the user manual for the Tektronix 370B.  Otherwise, you may consider speaking with Tektronix or getting ahold of a User Manual for the 370A and comparing some of the settings - there are likely some differences in your configuration options at the very least.  Or, if someone out there has tackled this before and shares their knowledge...
    Good luck! 
    Regards,
    Anna M.
    National Instruments

  • Does anybody know how to install Snow Leopard on an external HD with Lion?

    My MacBook Pro came from apple with Lion OS X 10.7.1 installed and it doesn't operate with Pro Tools LE 8.0.5 (or any other version for that matter and PT 9.0.5 is only in beta) So, I'm looking to partition Snow Leopard OS X 10.6 to my external HD so I can bypass the issue without compromising and downgrading my MacBook Pro (which I've been told is not possible anyway but I'm sure there is a way) and having to A) Pay out more money to avid and get PT 9 ( BETA) or B) Run a different DAW (Also costing more $$$) Any help would be MUCH appreciated!!!

    Yes it's possible, you need another Firewire capable Mac#2 that can hold c boot off the 10.6.3 Snow Leopard Retail Disks and a Firewire cable and if necessary a FW 800 to 400 adapter.
    First you boot into Lion on Mac#1 and use Disk Utility to Erase Free Space, this will take a few hours.
    Then backup your data off the Mac#1 Lion partition to a external drive and disconnect. (for safety sake)
    Then you create a second partition on the drive in Disk Utility, formatted OS X Extended (Journaled) under the Partition Tab.
    While that is all going on, on the other Mac#2 that can boot off 10.6.3 disks, you do the same thing,
    First you boot into Snow or Lion on Mac#2 and use Disk Utility to Erase Free Space, this will take a few hours.
    Then backup the data off the Mac#2 main boot partition to a external drive and disconnect. (for safety sake)
    Then you create a second partition on the drive in Disk Utility, formatted OS X Extended (Journaled) under the Partition Tab.
    Hold c and boot Mac#2 off the 10.6.3 Retail Snow Leopard Disk (won't work with grey disks unless it matches the target machine model) and install onto the new partition on Mac#2, reboot holding option key and select the 10.6.3 partition, once in, use the Combo Update to get to 10.6.8. (must do)
    Reboot holding T this Lion Mac#1 so it's in Target Disk Mode, connect the Firewire cable to the other Mac#2, then hold option key and reboot into the second partition on Mac#2. Download and use Carbon Copy Cloner to clone the new partition of Mac#2 to new partition of Mac#1
    Reboot Mac#1 holding option key  to boot into Snow partition on the factory Lion Mac#1.
    If that doesn't work, you need to combine the 10.6.3 and the 10.6.8 Combo Update together in this process at the link below, and apply the 10.6.3 + 10.6.8 combined image in the same Target Disk mode fashion
    https://discussions.apple.com/thread/3264421?start=0&tstart=0
    Another method is if you can convince Apple to send you the 10.6.6 install disks for your machine, then use the Target Disk Mode approach to circumvent the firmware which is preventing you from booting off install disks from any previous version of OS X.
    For example, my new 2011 MBP came with 10.6.6 grey install disks, but can't boot off the 10.6.3 Snow Leopard Retail Disks.
    Another method would be to find another same exact machine as yours, came with 10.6.6 from the factory (even if upgraded to Lion it should still boot 10.6.6), thus will boot off the 10.6.6 install disks and install it onto your parttion.
    Needless to say, after going through all this, you really need to make a clone of the partition once it's successfully installed.
    Set the startup disk in system preferences to Snow.
    https://discussions.apple.com/message/16276201#16276201

  • Does anybody how how to install a software to imac (intel), does anybody how how to install a software to imac (intel)

    does anybody know how to install a new software to imac (intel)?
    I have tried and is doesnt' automatically load up when a program is placed in the drive.... its like it isn't reading it or something

    In addition to stedman's, you really should not need any software for your camcorder. What is it supposed to do? You already have software on your Mac to work with video: iPhoto and iMovie.
    Edit: take a look at this article:
    http://docs.info.apple.com/article.html?path=iMovie/9.0/en/mov39f85198.html
    Make sure to check out the link on iMovie compatibility!

  • Does anybody know if you uninstall iTunes (mine is giving me an error message) and then re-install, will my music still be there (somewhere?)  I don't have it saved to the cloud, but it is on my iPad.

    Does anybody know if you uninstall iTunes (mine is giving me an error message) and then re-install, will my music still be there (somewhere?)  I don't have it saved to the cloud, but it is on my iPad  I recently upgraded my iTunes account and now I can't open it.  I get an error message and it says I need to re-install.

    Go to Control Panel > Add or Remove Programs (Win XP) or Programs and Features (later)
    Remove all of these items in the following order:
    iTunes
    Apple Software Update
    Apple Mobile Device Support (if this won't uninstall move on to the next item)
    Bonjour
    Apple Application Support
    Reboot, download iTunes, then reinstall, either using an account with administrative rights, or right-clicking the downloaded installer and selecting Run as Administrator.
    The uninstall and reinstall process will preserve your iTunes library and settings, but ideally you would back up the library and your other important personal documents and data on a regular basis. See this user tip for a suggested technique.
    Please note:
    Some users may need to follow all the steps in whichever of the following support documents applies to their system. These include some additional manual file and folder deletions not mentioned above.
    HT1925: Removing and Reinstalling iTunes for Windows XP
    HT1923: Removing and reinstalling iTunes for Windows Vista, Windows 7, or Windows 8
    tt2

  • Installed Yosemite and now lost apps and also my App Store does not open. Does anybody know how to fix the problem?

    Some weeks ago, I installed OS X Yosemite, as shown on my App Store, that was a "System Update available for my IMac 2009". Followed all the steps, normally and installed it as I did many other times ago (with the Maverick, Mountain Lion, OS X).
    Just after the installation, I noticed that every single folder or program that depends on "Apple", stopped working.
    Examples: Office package opens normally, so as Firefox. But, IPhoto, ITunes, Safari and App Store itself do not.
    That is causing me fear, because even trying to reinstall Yosemite or return to the one I had before, using App Store became impossible. Even the "Apple Icon" on the top left corner does not work. I click, it flashes, just IF it was ready to open, but nothing happens, seams that have something stopping the "loading process" of the softwares.
    Does anybody know how to fix the problem, please?
    Thanks in advance. Regards.

    Thanks for your attention.
    I Tried before, but the Mac App Store was not responding either, and worse, after 5 years, There is no free phone support
    I ended up solving it by reinstaling the Yosemite pressing "comand + R"
    thanks anyway
    Regards

  • Does anybody know what the phrase can't find driver mean?

    I have a PowerMac 4,2 and it won't start up for me It goes to a black and white screen and has the words panic,and unable to find driver
    for this platform. Does anybody know what that means,and what do I have to do to fix it. Thank you and have a great day Dale

    It means you have likely installed something for Intel Macs that runs at startup that won't work with that Mac.  If you moved a hard drive with Mac OS X 10.6 or later on it to the Powermac, that would cause such a problem.  If you connected a hard drive with 10.6 or later on it on it that was running Target Disk Mode (booting the Intel machine holding the T key) to it, that would cause such a problem.  If you attempted to install 10.4.4 or later system specific disc on a hard drive that was designed for an Intel Mac, and moved it to that machine, that would cause such a problem.  If you attempted to install a GUID formatted partition hard drive as opposed to Apple partition map on the machine, that could cause such a problem.

  • Does anybody know how I can get my Mac Book Pro back, which was stolen during a presentation I was attending. I have the store receipt, however I had not installed i Cloud in my mac Book?

    Does anybody know how I can get my Mac Book Pro back, which was stolen after a class I taught?
    I have the store receipt, its serial number, however I had not installed i Cloud on my Mac Book and I'm not able to find my Mac back.
    Thanks for helping me!

    Sorry to say but you are out of luck.
    What To Do If Your Mac Is Lost Or Stolen
    If you activated Find My Mac before it was lost or stolen, you can track it only if it is connected to the Internet by Wi-Fi. What you cannot do is track your computer using a serial number or other identifying number. You cannot expect Apple or anyone else to find your computer for you. You cannot recover your loss unless you insure your device for such loss. It is not covered by your warranty. Be sure to report the loss or theft to the local police. Have the serial number handy. If your Mac is found it cannot be returned to you if you don’t have the serial number and proof of purchase.
    Find My Mac can be used from Find My Phone at iCloud.com and via Find My Phone on your iDevice.
          The following is third-party anti-theft software:
               1.  STEM 2.1
               2.  MacPhoneHome 3.5
               3.  MacTrack 7.5.0
               4.  VUWER 1.7
               5.  Sneaky Bastar* 0.2.0
               6.  Undercover 5.1.1
               7.  LoJack for Laptops
               8. Hidden 2.0
               9. Prey 0.6.2

  • Cant install any version of itunes on windows vista, does anybody know of a fix?

    cant install any version of itunes on windows vista, does anybody know of a fix?

    Since you don't say why it won't install, here is what I have found to work on a Vista machine, 32-bit:
    Download but do not install iTunes file from Apple site
    Stop anti-virus and firewall
    Restart computer
    Login as Admin
    Run iTunes installation
    Turn anti-virus and firewall on
    Restart and login as regular user
    Vista likes to leave a lot of installers running in the background even when they finish and that interfers with the iTunes installer.

  • Does anybody know if the ipad air 1 is using yosemite or something different? I don't know what type of safari i should install because it disappeared from the ipad. Thanks!

    Does anybody know if the ipad air 1 is using yosemite or something different? I don't know what type of safari i should install because it disappeared from the ipad. Thanks!

    YYosemite is a Mac OS and it doesn't run on an iPad. You cannot delete or install Safari on the iPad. It is on your device somewhere.
    Swipe from screen to screen to look for it.
    Check Settings>General>Restrictions and make sure that you didn't disable it.
    You can also reset the home screen layout and the icon will reappear - but the home screen will return to the way that it looked when you first activated your iPad. Settings>General>Reset>Reset Home Screen Layout.

  • When openning itunes, I get a message saying I need to reinstall itunes if I want to burn cds. I already tried removing and installing lates itunes version but does not help. Does anybody know anything about fixing this issue?

    I cannot burn cds from itunes. Every time I open itunes i get a message indicating i need to reinstall itunes. I have already done so but it's not working. I still cant burn cds. Does anybody know how i can fix this? My windows media player burns cds just fine.

    I am having this same issue with Windows XP. The exact message that I get everytime that I open iTunes is :
    The registry settings used by the iTunes drivers forimporting and burning CDs and DVDs are missing. This can happen as a result of installing other CD burning software. Please reinstall iTunes. I have deleted and reinstalled iTunes three times. I also have a problem with iTunes randomly opening itself.

  • Does anybody know how to reinstall System Preferences? I accidentaly put System Preferences in the trash and emptied the trash :P

    Does anybody know how to get System Preferences? A couple of weeks ago I put it in the trash and emptied it. Does anyone know how to reinstall it?

    How Restore Deleted or Missing OS X Components
    A few of the basic OS X installed applications can be restored from the Optional Installs installer located in the Optional installs folder on your Installer DVD.  However, if what you need is not there then follow the instructions below.
    How to Use Pacifist to Restore Deleted or Missing OS X Components
    Insert the OS X Installer DVD into the optical drive.  Use a simple utility like TinkerTool to toggle invisibility so you can see invisible items.  Alternatively, open the Terminal application in your Utilities folder and at the prompt enter the following:
    defaults write com.apple.finder AppleShowAllFiles Yes
    Press RETURN.
    To turn off the display of invisible files repeat the above command substituting No for Yes.
    The install packages are located in the /System/Installation/ folder on the DVD.
    Download the shareware utility Pacifist. Use it to extract a fresh copy of the missing item(s) from the file archives on your OS X installation DVD. The file archives are in the /System/Installations/ folder (use Go to Folder option in the Go menu of the Finder.)
    Here are Four Basic ways to use Pacifist (courtesy of George Orville.)
      A. Drag a .pkg icon onto the Pacifist window .....proceed to step 7.
      B. Click on “Open Package ....” and navigate to package desired and click “Open” in
           the open/save window.....proceed to step 7.
      C. Insert Mac OS X installer CD and when it mounts, navigate to .... Menu->Go->Go
           to Folder. In the path field enter or paste ....
    /Volumes/disc name/System/Installation/Packages (where disc name is the name of the CD/DVD that you inserted.)
    Click on the  "Go" button ..... • Drag a .pkg to Pacifist..... proceed to step 7.
    The package you'll need will have to be discovered by trial and error, but for most applications you should start with the Essentials.pkg and/or Additional Essentials.pkg.
    D. Insert your Mac OS X install disk 1 .... and open Pacifist.
    1. In Pacifist, select "Open Mac OS X Install Packages" ... dialog may appear asking for disk 2, then disk 3 and finally disk 1 again.... {if DVD is not used)...If “Stop Loading” is selected...the procedure will stop!!!
    2a. When loading is complete, a new window appears, click the triangle to display contents of each package...Select item and proceed to step 7.
    2b. or click the “Find” icon in the Pacifist window and type the name of the software you need.
    3. In the list that comes back, click the top most entry for the item that you want. ..... that is the one for the English language.
    4. On the top of the Pacifist window, click “verify” .... you will probably be prompted for your password.
    5. Enter checks for.... “verify permissions” and “verify file contents.” and click “verify” ....enter password when prompted.... you will get back output which may look like this:
      20 files were scanned. 20 of 20 files were present on the hard disk. 0 of 20 files had file permissions that did not match those specified in the package. 0 of 20 files had checksums that did not match those specified in the package.
    6. Click “close”. Go to step 7.
    Extract or Install........
    7. In the Toolbar (upper left), you now have the option to extract or install. Click a file in the lower list and those two icons will be enabled.
    8. If “Extract to...” is selected.... navigate to the location where the file will be placed, select “choose”, select “extract” in new dialog that appears,authenicate , if prompted, click “OK”.
    9. In the next dialog, click “Extract”.
    10. If “Install” is selected... dialog will appear with the location/path of the installed software. Click “Install”
    11. Type in your password, click “OK”
    Pacifist will begin to extract files.
    12. In steps 8/10ß.... you also have the choice to “cancel”
    Notes: Pacifist may find that a file it is installing already exists on the hard disk. Pacifist will present you with an alert panel....
      • Stop
      • Leave original alone
      • Update .....
      • Default selection
      • Replace .... (Replace option should only be used on full install packages)

  • I need to erase the contents of my phone and restore to factory settings. Does anybody know how to save your texts so you don't lose them?  Can I back those up to iCloud?  My phone was very likely hacked (Apple's advice was to call the police!)

    "I need to erase the contents of my phone and restore to factory settings. Does anybody know how to save your texts so you don't lose them?  Can I back those up to iCloud?  My phone was very likely hacked (Apple's advice was to call the police!)"
    That was all I could put in the initial "box."  Then it brought me to this page with instructions on how to write a good sentence.
    Proceeding ...
    After going back and forth between Apple, AT&T and the police (all telling me to go to the other two) I took AT&Ts suggestion and got a new number. One tech warned against doing a backup, especially on my Mac, saying if my phone had been hacked then whatever bug was there would then invade my computer. But nobody knows how to determine if the phone has been hacked or a virus was planted there. Unfortunately I know who would have reason to do such a thing and all I can say is that he is at the top technologically and could easily do it. Almost impossible to prove, however.
    So I need to preserve my text messages and my emails as well. I backed up my photos to that Microsoft product (One-Drive) and it froze (Surprise, Surprise) with four short videos to go, and no way of stopping that (when I tried it crashed repeatedly) so I'm in crisis mode here.
    Help ...
    Running 8.0 on 5S
    Thanks!

    Betty I don't know if you fixed your hacking problem but I feel your pain. I've seen some strange things going on between my iMac and my iPhone and Apple has told me the same thing, call the police which I have done. The hackers have stole 500.00 out of my checking account have access to every internet account I use and no matter how often I change the password their right back on the account. I closed my FB account 3 times only to have someone reopen it. Right now I've got a link in my reading list (Safari) that if I click on it, it allows me to log onto my FB account anonymously.
    I've seen a green folder come out of no where while I was trying to delete my passwords out of keychain when that green folder was put into the key chain I was immediately locked out. I than went into system preferences to try to make changes to my security settings, when I clicked on the icon it wouldn't open. I've seen log files of automator receiving commands and sending out my personal information thats on my computer.
    I have a legitamate program called iExplorer that allows you to look at the contents of your iPhone back ups and saw a transaction someone made at the Apple store for some full length movies, some albums, ibooks and other apps but when I called the iTunes store and they said none of those items were showing up on my account. If their not on my account how can they be on my iPhone 6? One day someone was using my gmail account and unknowingly used google maps to search for an Italian restaurant, than a Mexican restaurant than a coffee shop and their search showed up on my iPhone but I didn't have my gmail account installed on my iPhone 6. Using my computer I logged onto my gmail account and looked at the maps history and sure enough there were the searches when I'd hover my curser over the link it gave me the longitude and latitude of the where the hacker was when he was using google maps. I know whoever reads this thinks Im crazy but I've documented everything and can prove the things that I have mentioned in this post actually happened.
    One day I had my laptop (pc) and my iMac next to each other as I was using both. when I clicked on airport it showed that my laptop and my iMac had made a connection and were actually communicating with each other. I know I didn't do it I don't know how. The iMac was logged into my iCloud account while my laptop wasn't. I have formatted my iPhone at least a dozen times, Apple and an Apple retailer have formatted my hard drive not to mention the numerous times I have formatted it but the hackers keep getting on my devices. Im formatting my lap top at this very second because during the course of the night I left the ethernet cable plugged into it and they locked me out of my c: drive, and configured the system so I can't download any updates from Microsoft, overtime I type in www.microsoft.com it changes to ww38.microsoft.com which takes me to a blank page. I right clicked on the page I was redirected to and read the java script and couldn't believe that someone had actually configured Internet Explorer to redirect me to a blank page when I tried to go to Microsoft. Apples answer to all this is there was nothing wrong with my iPhone or my iMac and if I thought there was a problem to call the police which I have done.
    Theres no doubt the hackers are reading this while I type it or will read it and I simply don't care anymore. I no longer email anyone, don't use my iCloud account and have taken precautions to protect my credit but if I ever find out who has invaded my privacy to this extreme the police are going to want to talk to me because Im going to hurt them like they've never been hurt before

Maybe you are looking for

  • Filtering unique values in dataset

    Hi, I have nice little dataset here, populated from xml. It contains articles, categories..... What I need is to initialize my custom menu class with unique values from categories column. So how do I query my dataset to return me only unique categori

  • Security Update for SQL Server 2005 SP3 (KB2494113) failed

    Here is the Error, Can't get the update install, please help. KB Number: KB2494113 Machine: MJA01 OS Version: Server 4.0 Service Pack 1 (Build 7601) Package Language: 1033 (ENU) Package Platform: x86 Package SP Level: 3 Package Version: 4060 Command-

  • Server issue or website issue

    Periodically when I open my site from a browser (i.e.6), I see some pages of my site split in half (See URL for pictures). Two Pictures The top picture shows the split (bad), the bottom picture shows how it should look. If I refresh my browser the pa

  • Ipod Button Not Appearing

    I have downloaded the latest version of software for my phone (v. 1.0.2) but the itunes button does not appear on the main screen. Amy suggestions???

  • Confused about calling translation profile explanation In official cert guide 640-461

    Hi.  On page 143 of the official ccna voice cert guide there Is an example of a translation profile where calls from the PSTN with DID range of 6xxx should be converted to 5xxx to reach the internal network.There Is an explanation of why the called r