New gsl.sql.driv.Driver();    //????

I bought the book:"Java Swing" and I have problems with an Example, in this case the mistake is with the follow line:
new gsl.sql.driv.Driver();
Do you know why I have problems with this line?
The mistake message is:
C:\My Documents\Java\Swing>javac QueryTableMod
QueryTableModel.java:17: cannot resolve symbol
symbol : class Driver
location: package driv
new gsl.sql.driv.Driver();
^
1 error

Check if you have package gsl.sql.driv in your jdk (it is non standart package). If no, you have to put jar file of this package in
disc:\path to your jdk\jre\lib\ext
hope it will help you.

Similar Messages

  • Unable to load my sql driver

    So frustrated to see my servlet cant connect to mysql database, anyone pls help me?
    i put mysql-connector-java-2.0.14-bin.jar in
    C:\Apache\Tomcat 4.0\common\lib
    C:\Apache\Tomcat 4.0\webapps\ROOT\WEB-INF\lib
    D:\j2sdk1.4.0_03\jre\lib\ext
    here the exception:
    javax.servlet.ServletException: Unable to load driver
         at FormHandlerServlet.init(FormHandlerServlet.java:27)
         at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:918)
         at org.apache.catalina.core.StandardWrapper.allocate(StandardWrapper.java:655)
         at org.apache.catalina.servlets.InvokerServlet.serveRequest(InvokerServlet.java:400)
         at org.apache.catalina.servlets.InvokerServlet.doPost(InvokerServlet.java:216)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:243)
         at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:566)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:190)
         at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:566)
         at org.apache.catalina.valves.CertificatesValve.invoke(CertificatesValve.java:246)
         at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:564)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
         at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2347)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180)
         at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:566)
         at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:170)
         at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:564)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:170)
         at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:564)
         at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:468)
         at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:564)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:174)
         at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:566)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
         at org.apache.catalina.connector.http.HttpProcessor.process(HttpProcessor.java:1027)
         at org.apache.catalina.connector.http.HttpProcessor.run(HttpProcessor.java:1125)
         at java.lang.Thread.run(Thread.java:536)
    here is my servlet:
    import java.io.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.util.*;
    import java.sql.*;
    import java.sql.Date;
    public class FormHandlerServlet extends HttpServlet{
    private static final String driver="com.mysql.jdbc.driver";
    private static final String dbURL= "jdbc:mysql://localhost/aos";
    private static final String login= "aos";
    private static final String password= "aos";
    private ServletContext context;
    private Connection conn= null;
    private Statement stmt= null;
    public void init(ServletConfig config) throws ServletException{
         super.init(config);
         context= config.getServletContext();
         try{
         Class.forName(driver);
         conn= DriverManager.getConnection(dbURL, login, password);
         stmt= conn.createStatement();
         catch(ClassNotFoundException e){
         System.err.println("Unable to load driver");
         throw new ServletException("Unable to load driver");
         catch(SQLException e){
         System.err.println("Unable to connect to database");
         throw new ServletException("Unable to connect to database");
    public void service(HttpServletRequest req,
              HttpServletResponse res)
         throws ServletException, IOException{
         Vector errors= new Vector();
         Calendar startCalendarDate = Calendar.getInstance(TimeZone.getDefault());
         java.util.Date startUtilDate = new java.util.Date();
         long startLongDate = startCalendarDate.getTime().getTime();
         java.sql.Date startSqlDate = new java.sql.Date(startLongDate);
         String userID= req.getParameter("userID");
         String password1= req.getParameter("password1");
         String password2= req.getParameter("password2");
         String name= req.getParameter("name");
         String ic= req.getParameter("ic");
         String status= req.getParameter("status");
         String gender= req.getParameter("gender");
         String department= req.getParameter("department");
         String email= req.getParameter("email");
         String phone=req.getParameter("phone");
         if(!isRequiredData(userID, password1, password2, status))
         errors.add("Sila isikan semua data yang diperlukan dimana *.");
         else{
         try{
         if(isExistedUser(userID))
    errors.add("No Matriks/Pekerja anda sudah wujud, Sila cuba lagi.");
         catch(SQLException e){}
         if(!isSamePassword(password1,password2))
         errors.add("Sila isikan password1 dan password2 yang sama.");
         if(!isValidPassword(password1,password2))
         errors.add("Sila isikan password anda dalam 8-12 perkataan.");
         if(!isValidEmail(email))
         errors.add("Sila pastikan " +"@"+" dalam e-mel anda.");
         if(!isValidPhone(phone))
         errors.add("Sila pastikan "+ "-"+" tidak dalam nombor telefon anda.");
         if(!isValidUserID(userID))
         errors.add("Nombor Matriks/Pekerja anda tidak mengandungi 6 perkataan.");
         String next;
         String password= password1;
         String insert= "insert into user values('"+userID+"', '"+password+"','"+
         name+"', '"+ic+"', '"+status+"', '"+gender+"','"+
         department+"', '"+email+"', '"+phone+"', '"+startSqlDate+"')";
         if (errors.size() ==0){
         //data is ok, insert data to database, dispatch to wherever
         try{
              int x= stmt.executeUpdate(insert);
         catch(SQLException e){}
         next= "/aos/thanks.jsp";
         else{
         //data has errors, try again
         String[] errorArray= (String[])errors.toArray(new String[0]);
         req.setAttribute("errors", errorArray);
         next= "/aos/RegisterForm.jsp";
         RequestDispatcher rd;
         rd= context.getRequestDispatcher(next);
         rd.forward(req, res);
    public boolean isSamePassword(String password1,String password2){
         //check for both password is same
         return(password1.equals(password2));
    public boolean isValidPassword(String password1,String password2){
         //check for both password is under 8-12 char
         return(password1.length()>=8 && password1.length()<=12 &&
         password2.length()>=8 && password2.length()<=12);
    public boolean isValidPhone(String phone){
         //check for no dashes
         return(phone.indexOf("-")==-1);
    public boolean isValidEmail(String email){
         //check an "@" somewhere after 1st char
         return(email.indexOf("@")>0);
    public boolean isValidUserID(String userID){
         //check for userID is 6 char
         return(userID.length()==6);
    public boolean isRequiredData(String userID,
    String password1, String password2, String status){
    //check for required data is filled
         return(userID.length()!=0 && password1.length()!=0 &&
         password2.length()!=0 && status.length()!=0);
    public boolean isExistedUser(String userID) throws SQLException{
    String sql= "select * from user where id= '"+userID+"'";
    ResultSet rs= stmt.executeQuery(sql);
         if(rs.next())
    return true;
         else
         return false;
         

    is the driver name correct?
    private static final String driver="com.mysql.jdbc.driver";
    I usually have another string, but I might use a different mysql driver. Try opening your mysql driver with winzip and see if the class is there and at the defined directory place

  • I have moved all my songs onto a new external hard drive but it has wiped my iPod clean. Although when I connect my iPod it's starts teh process of sync'ing - so many songs in I get a pop up advising the siong could not be read or written to?

    I  have moved all my itunes onto a new external hard drive to free up space. It has wiped my ipod clean! I can still see the itunes on the new hard drive so I restored my iPod and tried to sync. Although when I connect my iPod it's in the process of syncing, so many songs in I get a pop up saying could not copy to my iPod as xyz song title could not be read or written. I click ok for this pop up to dissapear and then another pop up appears saying could not coyp to iPod because of unknown error.!!! Help I'm going crazy.

    Did you go into iTunes to change the location of your media files? if not you will need to go into iTunes and click on preference and select the advance tab then click the iTunes Media folder location.  Select the location of your on external hard drive. 

  • I have been storing my Aperture and IMovie Libraries on an external hard drive that recently died.  Fortunately I've been using Time Machine to back up to a 2nd external drive.  How do I restore my libraries to a new external hard drive?

    I have been storing my Aperture and IMovie Libraries on an external hard drive that recently died.  Fortunately I've been using Time Machine to back up to a 2nd external drive.  How do I restore my libraries to a new external hard drive?

    This is a tricky one.
    Open up Time Machine and go back to a date using the timeline on the right side of the window when you know the drive was working and was backing up as part of Time Machine backups.
    Click on the name of your Mac under the Devices heading on the left side of the window in Time Machine, and if things are working correctly you will see Macintosh HD (or whatever you have named it) and the name of the external hard drive that was backing up in the past.
    Right-Click on the name of the external hard drive and then click on "Restore (name of drive) to....."  You may be asked for your adminstrator password at this point.
    It might be easier to restore the drive contents to your desktop if you have room on your Mac, and then copy things over to the new external drive where you want to store the Aperture and iMovie Libraries.
    Once the libraries have been moved over the new external hard drive, you will likely need to "point" Aperture and iMovie to the location of the libraries on the new external hard drive.

  • Problem installing Mac OSX on my new MacBook hard drive...

    Hi,
    i am beside myself again...(i just visited my local Genius bar this afternoon). Any help would be most appreciated! :o)
    i purchased a 2.5 inch SATA Fujitsu 120GB laptop hard drive for my new MacBook. Followed the awesome* instructions on "how to replace/upgrade hard drive", and took out the original Toshiba HD. What the instructions* failed to mention was that i would eventually need to use a Torx screwdriver (star-shaped) to remove the caddy/carriage from the Toshiba HD. Got that the next day and replaced the Toshiba 80GB with my new 120GB Fujitsu drive..., it slipped into place nicely but i did notice that the Toshiba had four short wires protruding out to the right of the contacts, which my new Fujitsu didn't have... hmmmm...?!
    anyways, tried to install Mac OSX on the new drive, booted up with the install disc... went thru' chosing the language (English), agreed to the second step... but when it came time to install, there was NO icon at all in the box where i am asked where i want to install it!!!
    so i go to disk utilities, and see that my Fujitsu HD is indeed recognized, but none of the buttons in first aid are active... so i can't check it.
    i figured that had to do with the four little wires, so i replaced the original Toshiba and made a reservation with Genius Bar to ask for assistance.
    this afternoon, i explained my problem and was told the four wires have NOTHING to do with it... Lawrence (the genius) told me to (actually, first he said Apple does not recommend my doing this... and that i should go to a 3rd party computer store such as Dino to get help!) go back to disk utilities and partition, then erase this drive and then i will see the icon for this drive in the install box.
    Well i did everything i was told to do and... still, there is no icon for my Fujitsu HD! :o(
    I was able to partition, after which there was a disc0 under the Fujitsu drive on the left side of the disk utilities. When i go to system profiler, and click on ATA... it too shows the Fujitsu drive... but i cannot install because there is NOTHING to click on at the installation step! the "continue" button is not active and only the "back" button is actively mocking me!!!
    i know many of you have successfully upgraded your hard drive... what am i doing wrong? Would a different brand work better? I know Seagate is quite popular, and OWC sells a Western Digital version as well as a Hitachi... do those four little wires make a difference? Would the Seagate come with those wires???
    i am going crazy... thanks, and sorry for the long post, just wanted to let you know what i've done!
    blue skies,
    ps. please feel free to email me at [email protected] if you think that would be better! :o)

    Hi,
    ...after getting back from school, my MacBook was STILL in the process of verifying and "supposedly" repairing... since i was gone for over 10 hours, i finally assumed the drive was either defective or just incompatible, and quit disk utility.
    ...this morning i went out and bought a new Seagate 120GB SATA (they didn't have 160GB SATA drives, only 160GB ultra-ATA drives) 2.5 inch HD. This one DID have those four wires to the right of the contacts... (i don't know how important they are), and after changing and exchanging the Toshiba/Fujitsu HDs, it was a breeze putting in the new Seagate drive.
    Erased > patritioned > and sure enough, the icon showed up and the biggest smile showed up on my face as i finished installing! :o)
    I contacted the original seller of my fujitsu hd (it was a 2.5 inch, 120GB, serial ATA notebook drive) and he was kind enough to say "just pack it up and send it back for a refund!" (minus shipping and re-stocking fees of course! :o)
    Just wanted to mention that, the fujitsu hd WAS recognized by disk-utility and at the bottom left of the window it said that the fujitsu was "GUID partitioned"..., so i am still scratching my head as to why it didn't work?!
    I want to thank everyone that offered advice, it was helpful and i feel more comfortable with my MacBook after this trying and very frustrating episode! :o)
    blue skies,

  • I bought a new external hard drive for backups, but time machine won't do a full back up.  I think it is remembering backing up onto previous external hard drives, which I don't own anymore.  How do I do a new full backup?

    I bought a new external hard drive for backups, but time machine won't do a full back up. 
    I think it is remembering backing up onto previous external hard drives, which I don't own anymore.  How do I do a new full backup?
    When I bought the new (used) iMac, I also bought an external hard drive for backups.  It worked fine, but my husband stole it.
    Then I bought a new external hard drive (Seagate) and it worked fine for three weeks, then died.
    So I just got a new external hard drive, which was put together from an internal hard drive and a hard drive enclosure. 
    Time machine did the first backup today, and it should have taken 9 hours like it did on the previous first time full back up.  Instead, it took 30 minutes.  That can't be right.  I want to start over and do a full backup to make sure everything gets onto my new external hard drive, but I can't figure out how to do that.  Please help.

    Triple-click anywhere in the line below to select it:
    tmutil compare -E
    Copy the selected text to the Clipboard (command-C).
    Launch the Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Paste into the Terminal window (command-V).
    The command will take at least a few minutes to run. Eventually some lines of output will appear below what you entered.
    Each line that begins with a plus sign (“+”) represents a file that has been added to the source volume since the last snapshot was taken. These files have not been backed up yet.
    Each line that begins with an exclamation point (“!”) represents a file that has changed on the source volume. These files have been backed up, but not in their present state.
    Each line that begins with a minus sign (“-“) represents a file that has been removed from the source volume.
    At the end of the output, you’ll get some lines like the following:
    Added:
    Removed:
    Changed:
    These lines show the total amount of data added, removed, or changed on the source(s) since the last snapshot.

  • I move all photos to a new external hard drive.  Now all folders have a question mark in them.  How do I find ALL PHOTOS at one time instead of having to find each picture. I have about 30,000 photos. Using  Mac. LR5

    I have set up a new external hard drive and Im trying redirect LR to the new hard drive. I have over 30,000 photos and Im trying to see to see if there is a way to all photos located without having to go thru each folder at a time

    http://www.computer-darkroom.com/lr2_find_folder/find-folder.htm
    See Figure 4

  • How do I copy an iPhoto library, which is on an external hard drive, onto a new external hard drive?

    I'm running out of space on my external hard drive, so I was advised to buy one with triple the amount of space.  So, I need to copy my current iphoto library, which is on an external hard drive, onto a new external hard drive.  I thought I could just drag and drop it in, but that doesn't seem to be working. 

    Make sure the external drive is formatted MacOS Extended (Journaled) and then drag the iPhoto Library to that drive using the Finder.
    Then double click the library in its new location to open it in iPhoto. Test it thoroughly, if it is working, before deleting the original library on the internal drive.
    To check the format of the drive, see (it says Aperture, but the same applies to iPhoto):  Format external drives to Mac OS Extended before using with Aperture
    iPhoto: Issues with FAT32-formatted drives

  • How do I clone my boot volume to a new internal hard drive?

    Hi,
    I record HD shows from my digital antenna using EyeTV 500, not to mention producing DVDs from my 8mm and miniDV home movies. I seem to be eating up disk space at an alarming rate.
    Does anyone have a general solution to storing large amounts of video?
    My current setup is:
    Original Internal HDD--250GB Maxtor "6Y250M0"
    Second Internal HDD--500GB Maxtor "6H500F0"
    External Firewire HDD--1 TB LaCie Big Disk Extreme "LUN 0"
    I've just bought a new Hitachi 1TB DeskStar SATA Drive (for the amazing price of $359 after a $30 rebate at OWC: http://eshop.macsales.com/item/Hitachi/OBD0A34915/). I plan to remove the original 250 GB drive and install the new Hitachi 1TB drive in that bay.
    My preference would be to make the Maxtor 500GB drive my new OS and Applications drive and the new 1TB internal drive my primary media drive. I should have room to clone the original 250GB drive to the second internal Maxtor 500GB drive, then swap out the 250GB drive for the new drive.
    The System folder is only 1.64 GB, the Library Folder is 11.9 GB, and the Applications Folder is 7.09 GB. The Current boot drive (250GB) has a capacity of 233 GB, with 139.09 GB used and 94.65 GB available.
    The specific questions I have are:
    1) If I clone the current boot drive (250GB) to the 500GB Maxtor Drive, do I have to clone it to a partition the same size as the original (250GB), or, when I Restore using disk utility, will it just become a 500 GB volume?
    2) Is it better to put the System, Apps, and Library in their own Partition, as opposed to having them share the same volume with a lot of other files?
    2) ...if so, how do I calculate how big a partition I'll need for the system and apps on the Maxtor 500 GB drive?
    3) What's the best way to do all this? What pitfalls do I need to watch out for?
    4) I plan on upgrading to OS 10.5 (Leopard) when it comes out next month. (Does this change anything?)
    Thanks!
    Ashwin

    The very best way to clone one drive to another on a Mac, is to use a simple utility called Carbon Copy Cloner. It is available online, free as a download. Just google for Carbon Copy Cloner, download it (2.2 mb), and use it. It is really great and you will be happy with it.

  • How do I transfer an existing Aperture library to a new external hard drive

    I have a new external hard drive where I want to store my pictures to free up room on my iMac
    How do I take an existing Aperture library and move it to the external hard drive so that Aperature can find and use it?  Once it is moved can I delete the library from my iMac without causing problems with my new hard drive library?
    thanks

    Hello Barty,
    is your library referenced or managed?
    If your Aperture Library is managed, then you can simply copy it to your new external drive using the Finder. Make a backup of your old library and convince yourself that the backup is working.
    If your library is referenced, then use Aperture to relocate your master image files to the external drive (select all images, then File -> Relocate Master), then copy your Library to the external drive using the Finder.
    To point Aperture to the new library location, double click the new Aperture Library to open Aperture with it. Test it thoroughly, before you delete the original library.
    You might consider only to relocate the master images to your external drive and to leave the then much smaller Aperure Library on your system drive. That way Aperture will work faster, and you will be able to browse and share your images, even when our external drive is not connected.
    Regards
    Léonie

  • How do I reboot my Macbook pro 2011 to a new internal hard drive?

    I had to get a new internal hard drive and I can't afford to pay some one to do it for me. So I was wondering how do I install the operating system on to the hard drive?
    Thanks

    Since we don't know which MBP you have or what OS was initially installed on it, try this. Start up the Mac and hold down the Command and "R" keys. If you have an internet connection and if the MBP came with Lion installed, you should be able to boot into Internet Recovery. From there, you can download Lion from Apple's servers and install it. That's assuming the new HD has already been installed and formatted (you can format it yourself using the Disk Utility that's available in Internet Recovery).

  • Getting my backed-up photos into iPhoto on the new external hard drive

    I managed to use Time Machine to restore the back-up of my external hard drive (that died) to a new external hard drive, however, while I can see the .jpeg images that were in my original (ext. hard drive) iPhoto library on the new Passport Drive, they are no longer set up in an iPhoto library.  I might have confused the system because I had thought I needed a shell structure iPhoto library on the new hard drive, so I basically moved the new "budding" iPhoto library established on my iMac's internal hard drive to the Passport drive before restoring the Time Machine backup.  What I see now is 1. a 4GB iPhoto library existing on the internal drive.  2. an identical 4GB iPhoto library existing on the external Passport drive  and 3. a folder named Simpletech with the entire contents of the failed hard drive including all the photos from my original 54GB iPhoto library that resided on the old external hard drive, which are accessible as independent .jpeg files, but no longer organized as an iPhoto library. 
         Would love to know the steps to having just one iPhoto library on the Passport external hard drive that contains all my images without accidentally losing/deleting any images and messing up pointers.  I would not mind eliminating the iPhoto library on the internal hard drive either, provided I could get all the images into the main one.
    Angie in Charlotte

    while I can see the .jpeg images that were in my original (ext. hard drive) iPhoto library on the new Passport Drive
    When you enter Time Machine and go to the Pictures folder do you not see the iPhoto Library in it at different dates?
    Click to view full size
    If you used Time Machine to backup your hard drive then the iPhoto Library package should be in it.  If you did something different please explain in detail what you did.
    OT

  • I installed a new bigger hard drive and now spotlight does not work with outlook to search for emails

    My old hard drive was full so I went to an apple authorized provider to install a new bigger hard drive. They also moved the data and applications from my old drive to the new one. They did not use time capsule because their way was faster. After the installation I did have to reenter the product code key for Office 2011 for the Mac. However, now I find that I cannot do email spotlight searches in Outlook. When I put in the search - it comes up with no results. This is true no matter what the search. Any ideas of how to point spotlight to look in the email folders so I can do searches again. This is a feature I use daily - so I am concerned that I have lost this feature. Also, I am noticing that alot of the settings did not carry over to the new hard drive. Any help is greatly appreciated!

    I would recommend starting over and migrate using your Time Capsule backup however DO NOT do it wirelessly, connect using an Ethernet Connection. If you upgraded to Lion from Snow Leopard then follow the instructions in this video, the kid is annoying but he knows what he's doing. Clean Install Of Snow Leopard video. Once you have installed and updated Snow Leopard then update using the 10.6.8 Update Combo, then log into the Mac App Store and re-install Lion and all it's updates. My guess this is an afternoons work.

  • Problem with SQL driver

    Hi
    We're on Sap Dataservices version 4.1
    We're trying to control the SQL driver to be used for communicating with external warehouse.
    currently we get this error <[Microsoft][ODBC SQL Server Driver] Optional feature not implemented
    We have had a look at note 1624626 - seems like our problem, but we're not able to perform that tasks specified.
    Install Native Client for MS SQL Server 2008 - done
    Modify all data sources associated with the job to use the native client - how??
    Modify db connection of the datastore associated with the job
    Restart Job Service
    Run the job.
    Any help will be appreciated.

    Hi Henrik,
    As per the trailing post, when you had installed/updated the Native Client for MS SQL SERVER 2008, then there are some changes you need to take care about the repository connections as well as data store connections.
    Every job server is associated with at least one repository, In your case if the job server has a repository in MS SQL SERVER 2008 then do refresh the connection by going into
    DS server manager -> Config EDIT -> select the job server -> select the repository-> click on edit and reenter the credentials.
    Then do click on close and restart, only by doing so the services will restart and changes will take effect.
    By doing these steps, you had Restarted the job service as well as modified data connection to the repository associated to the job server.
    Lastly log on to the Designer and refresh all the data stores associated with MS SQL SERVER 2008.
    You can do this by just selecting the data store from the project explorer, right clicking on it and click on edit. Reenter the login credentials and click on apply.
    Regards,
    Mubashir Hussain

  • External hard drive that had my itunes on it crashed; had to recover data on new external hard drive; not can't access iTunes from my iMac - how do I name it correctly in order to make iTunes work again

    how do I set up a new external hard drive with my recovered iTunes (from a hard drive that crashed & had to be replaced) so that I can access iTunes on my iMac again?

    Take a look at this link, http://support.apple.com/kb/ht2519

Maybe you are looking for