Operation System effect the data been stored

Dear friends:
I want to design a application base on servlet to support both Simplified Chinese and Traditional Chinese, and I use UTF-8 to encode the data posted by
form store it in Ms Access. Unfortunatly it could work well on Simplified Windows 2000, but under Traditiona Windows 2000 it can only store Traditional Chinese char,the Simplified Chinese char it store as '?'. IS it Operation System problem?
Anyone can give me some suggestion,I will appreciate.
Thank!!

I presume you are using the JDBC-ODBC bridge... the problem is there, it does not support unicode, and cannot do the proper translation.
there are few threads in the JDBC forum that discuss this.

Similar Messages

  • I have a 2007 iMac connected via WiFi. It has been working fine until I turned it on after a recent vacation. Network preferences indicates that it is correctly connected to my WiFI system but the data input and output rate is virtually zero. I know that

    I have a 2007 iMac connected via WiFi. It has been working fine until I turned it on after a recent vacation. Network Preferences indicates that it is correctly connected to my WiFI system but the data input and output rate is virtually zero. I know that the WiFI signal is reaching the iMac since both my iPhone and iPad are working perfectly at that location. I have rebooted the router and the iMac to no avail. Any suggestions would be greatly appreciated. Thank you very much. Geoff

    Hi Geoff,
    Hi, this has worked for a few...
    Make a New Location, Using network locations in Mac OS X ...
    http://support.apple.com/kb/HT2712
    10.7 & 10.8…
    System Preferences>Network, top of window>Locations>Edit Locations, little plus icon, give it a name.
    10.5.x/10.6.x/10.7.x instructions...
    System Preferences>Network, click on the little gear at the bottom next to the + & - icons, (unlock lock first if locked), choose Set Service Order.
    The interface that connects to the Internet should be dragged to the top of the list.
    10.4 instructions...
    Is that Interface dragged to the top of Network>Show:>Network Port Configurations.
    If using Wifi/Airport...
    Instead of joining your Network from the list, click the WiFi icon at the top, and click join other network. Fill in everything as needed.
    For 10.5/10.6/10.7/10.8, System Preferences>Network, unlock the lock if need be, highlight the Interface you use to connect to Internet, click on the advanced button, click on the DNS tab, click on the little plus icon, then add these numbers...
    208.67.222.222
    208.67.220.220
    Click OK.

  • HT201250 when restoring a time machine backup to a new computer, does it affect the new operating system on the new computer

    when restoring a time machine backup to a new computer, does it affect the new operating system on the new computer?

    That depends on how you do it.
    By far the best, easiest, most reliable method is to use Setup Assistant when your shiny new Mac first starts up, to transfer your apps, users, data, etc.   That doesn't disturb either the OS or basic Apple apps that came with the new Mac.  See Using Setup Assistant on Mountain Lion or Lion.
    There is a facility to restore an entire system from Time Machine backups, including the version of OSX on the backup, but that's for use when your internal HD has been erased or replaced only.  It's not a good idea to restore the full backup of one Mac to a different one.  Depending on the circumstances, the installer may not allow it.  Even if it does, the Mac may not start up, or may kernel panic, or not work properly.

  • HT203167 I have just downloaded the latest itunes version (11.0.1). All my data cannot now be located, though the library is showing all the correct content.The data is stored on an external hard drive. How do I tell the library where to find it's data?

    I have just downloaded the latest itunes version (11.0.1). All my data cannot now be located, though the library is showing all the correct content.The data is stored on an external hard drive. How do I tell the library where to find it's data?

    The iTunes application should be installed on the system drive. You may need to repair iTunes to fix that error regarding a missing .exe.
    To organize your library properly see Make a split library portable.
    If you don't have a working version of the library that can be transformed into a portable shape I have tools and techniques that can repair the broken links.
    tt2

  • I've just moved from PC to Mac, with my PC i and using Vmware Player I used to work on 2 Virtual M/C both on 2 external drives, one Windows Server 2000 as operating system and the sec. WindowsXP, is their a way to open these m/c on my mac

    I've just moved from PC to Mac, with my PC i and using Vmware Player I used to work on 2 Virtual M/C both on 2 external drives, one Windows Server 2000 as operating system and the sec. WindowsXP, is their a way to open these m/c on my mac

    I am so glad to hear about your success. As you are new to the Mac environment, I will be glad to help you more.
    You said: "I can't change the setup yet but i have access". I don't understand what you mean about changing the setup! Please let me know more about that.
    I also recommend to use Boot Camp, which allows you to install windows on a partition of your internal hard drive. This has many benefits. First, you can restart your computer and start up in windows. This makes your Mac device a complete windows machine and you gain the most from your hardware when working in Windows. Second, if a problem occures to your Mac OS X, you can restart your machine in Windows and prevent your data from getting lost. Third, you can import the Windows installed on the boot camp partition in to the Mac OS X using VMWare Fusion and work with it as a virtual machine. In this situation, VMWare enables you to work directly with your Windows in the boot camp partition. So it does not create a file package for the virtual machine in OS X.
    Regarding the data safety and reliablity, I strongly recommend using Time Machine. You can also set it up to back up your virtual machines or not. This is possible to set up in the Virtual Machine Preferences Page in VMWare Fusion, or in the Time Machine preferences page in the System Preferences app of OS X.
    Please don't hesitate to ask any other question. I will be glad to help you.

  • I am using a mac mini 2011 an 3gs i phone 2010 macbook white 2008 and a new 2013 apple tv box. When i check info on the cloud I get 'upgrade your operating system to the latest. My question is is it possible to use the icloud system without an upgrade

    I am using a mac mini 2011 an 3gs i phone 2010 macbook white 2008 and a new 2013 apple tv box. When i check info on the cloud I get 'upgrade your operating system to the latest. My question is is it possible to use the icloud system without an upgrade

    iCloud requires OS X 10.7.2.

  • ORA-22288: file or LOB operation FILEOPEN failed (The data is invalid)

    Dear All,
    I am trying to insert a image file (gif) to one of my field.
    1. Here is my table structure and trying to insert gif image file to PIC file.
    SQL> desc cis2.david_pic
    Name Null? Type
    ID VARCHAR2(5)
    PIC BLOB
    2. I using sql command to create directory and the path is pointing where the DB
    server was installed.
    SQL> create or replace directory MY_FILES as '\\hkqaa-db1\TEXT_IMPORT';
    3. Written a script to insert empty blob first and than trying to use the dbms_lob.fileopen
    to upload the gif file.
    SQL> declare
    2 l_blob blob;
    3 l_bfile bfile;
    4 begin
    5 insert into cis2.david_pic values ( '1', empty_blob())
    6 returning pic into l_blob;
    7 l_bfile := bfilename('MY_FILES', 'bess_signature.gif');
    8 dbms_lob.fileopen(l_bfile);
    9 dbms_lob.loadfromfile(l_blob, l_bfile, dbms_lob.getlength(l_bfile));
    10 dbms_lob.fileclose(l_bfile);
    11 end;
    12 /
    4. After I ran my script I got this error message.
    declare
    ERROR at line 1:
    ORA-22288: file or LOB operation FILEOPEN failed
    The data is invalid.
    ORA-06512: at "SYS.DBMS_LOB", line 475
    ORA-06512: at line 8
    Can any tell me what wrong? is this the way to insert image?
    Thanks

    Know this is an old post: (for sharing sake.)
    Please try avoiding
    1. the 'hyphen' in between the path (hkqaadb1 instead of hkqaa-db1)
    2. Give direct path like 'C:\TEXT_IMPORT' instead of network path.
    create or replace directory MY_FILES as '\\hkqaa-db1\TEXT_IMPORT'; -- Not working.
    create or replace directory MY_FILES as 'C:\hkqaadb1\TEXT_IMPORT'; -- Working.
    and this worked fine.
    Edited by: Arunan.KL on Mar 23, 2011 5:04 PM

  • I was backing up my iphone by changing the location of library beacause i don't have enough space.My phone was taking too long to copying file so i can celled it.the data is stored in desired location . And now i can't delete that back up

    I was backing up my iphone by changing the location of library because i don't have enough space.My phone was taking too long to copying file so i can celled it.the data is stored in desired location . And now i can't delete that back up.
    Also tell me about the performance of iphone 4 with ios 7.1.1...........
    T0X1C

    rabidrabbit wrote:
    Can I back up my iPhone 4S to my ipad 3 (64 gb)?
    no
    rabidrabbit wrote:
    However, now I don't have enough space in iCloud to backup either device. Why not?
    iCloud only give so much space for free storage, then if you exceed the limit of 5gb you have to pay for additional storage.

  • I have Garageband version 4.1.2 (248.7) installed on my early 2008 IMAC Version 10.5.8. I have never upgraded but have a LOT of projects. If I upgrade my operating system to the next level (10.6?), will my GB version still work? Do I need to upgrade GB?

    I have Garageband version 4.1.2 (248.7) installed on my early 2008 IMAC 10.5.8. I have never upgraded. If I upgrade my operating system to the next level (10.6?) will my GB version still work? I have a LOT of projects involved and hope they will transfer. Can I (and should I) upgrade GB at the same time and how far should I go with that without causing a problem with my projects? What would I gain if I upgrade GB? Thanks!

    Nancyfromeasttexas wrote:
    I have Garageband version 4.1.2 (248.7) [...] If I upgrade my operating system to the next level (10.6?) will my GB version still work?
    my copy of 4.1.2 appears to work under 10.6.8, though i have not done extensive tests
    Nancyfromeasttexas wrote:
    I have a LOT of projects involved and hope they will transfer.
    they should
    Nancyfromeasttexas wrote:
    Can I (and should I) upgrade GB at the same time
    sure
    Nancyfromeasttexas wrote:
    (and should I) upgrade GB at the same time
    v4 is pretty lonh in the tooth now, and GB only costs $15, so I'd think it's a good idea
    Nancyfromeasttexas wrote:
    how far should I go with that without causing a problem with my projects?
    the only version you can buy new is v6,a nd it should open older projects without issue ... however you could keep 4 around:
    http://www.bulletsandbones.com/GB/GBFAQ.html#installnewkeepold
    (Let the page FULLY load. The link to your answer is at the top of your screen)
    Nancyfromeasttexas wrote:
    What would I gain if I upgrade GB?
    v5:
    http://www.bulletsandbones.com/GB/GBFAQ.html#whatsnew09
    (Let the page FULLY load. The link to your answer is at the top of your screen)
    v6:
    http://www.bulletsandbones.com/GB/GBFAQ.html#whatsnew11
    (Let the page FULLY load. The link to your answer is at the top of your screen)

  • Does Less Than ( ) operator works in the data template SQL within CDATA ??

    All,
    I am trying to use <= operator (<= sysdate) in the data template sql query and it's throwing Java exceptions.
    I have CDATA around my sql and XML parser should ignore '<' symbol. Query works fine if I use 'ampersandlt;=' operator. Here is my query
    <sqlStatement name="Q_1" dataSourceRef="">
    <![CDATA[select * from table where date_column <= sysdate]]>
    </sqlStatement>
    Just want to know if this is a bug.
    Thanks
    Problem was solved. Use 'ampersandlt;' where ampersand is '&' for less than

    Try this..
    select * from table where date_column <= sysdate

  • I currently have a 1Tb HDD installed in my macbook pro and have just recently acquired a 120GB SSD. I want to put the operating system on the SSD so it boots quickly but keep the files on the HDD. How do I do this?

    I currently have a 1Tb HDD installed in my macbook pro and have just recently acquired a 120GB SSD. I want to put the operating system on the SSD so it boots quickly but keep the files on the HDD. How do I do this?

    i also contacted the company that sold me the battery and they offered me my money back or a new battery
    Suggest that you take them up on their offer of a new battery.  Make sure you got the right one for your model MBP. 
    2 separate MBP battery installation Articles:
    1 -
    MacBook Pro: How to remove or install the battery
    2 -
    MacBook Pro: How to remove or install memory
    =================
    Never post your email address in a public forum.  Spam bots roam public forums looking for "spam victims". 
    If you insist on using your email address in a public forum & you want to "trick" the spam bots, then suggest that instead of using "@" in the email address, use instead the actual word AT.
    Regarding responding to your emal addy, we ask that you post all questions to the appropriate discussion forum. This allows other users and other helpers to have a chance to view and respond to your post. That way, everyone benefits from the exchange.
    Thank you
    I have requested that a HOST remove your email addy.

  • How the data is stored in Info cube...in the back end what will happen???

    Hi Experts,
    How the data is stored in Info cube and DSO...in the back end what will happen???
    I mean  Cube contain Fact table and Dimension tables How the data will store and what will happen in the backend???
    Regards,
    Swetha.

    Hi,
    Please check :
    How is data stored in DSO and Infocube
    InfoCubes are made up of a number of InfoObjects. All InfoObjects (characteristics and key figures) are available independent of the InfoCube. Characteristics refer to master data with their attributes and text descriptions.
    An InfoCube consists of several InfoObjects and is structured according to the star schema. This means there is a (large) fact table that contains the key figures for the InfoCube, as well as several (smaller) dimension tables which surround it. The characteristics of the InfoCube are stored in these dimensions.
    An InfoCube fact table only contains key figures, in contrast to a DataStore object, whose data part can also contain characteristics. The characteristics of an InfoCube are stored in its dimensions.
    The dimensions and the fact table are linked to one another using abstract identification numbers (dimension IDs) which are contained in the key part of the particular database table. As a result, the key figures of the InfoCube relate to the characteristics of the dimension. The characteristics determine the granularity (the degree of detail) at which the key figures are stored in the InfoCube.
    Characteristics that logically belong together (for example, district and area belong to the regional dimension) are grouped together in a dimension. By adhering to this design criterion, dimensions are to a large extent independent of each other, and dimension tables remain small with regards to data volume. This is beneficial in terms of performance. This InfoCube structure is optimized for data analysis.
    The fact table and dimension tables are both relational database tables.
    Characteristics refer to the master data with their attributes and text descriptions. All InfoObjects (characteristics with their master data as well as key figures) are available for all InfoCubes, unlike dimensions, which represent the specific organizational form of characteristics in one InfoCube.
    http://help.sap.com/saphelp_nw04s/helpdata/en/4c/89dc37c7f2d67ae10000009b38f889/frameset.htm
    Check the threads below:
    Re: about Star Schema
    Differences between Star Schema and extended Star Schem
    What is the difference between Fact tables F & E?
    Invalid characters erros
    -Vikram

  • Adding a new Operating System to the list of OS'es returned with Get-SCOperatingSystem

    Is it possible to add a new Operating System to the list of OS'es that's returned by the Get-SCOperatingSystem PowerShell cmdlet?
    I have a few Linux distributions that will run fine under Hyper-V with the latest LIS improvements, but I would like to create a new entry for that said distributions as I would like it to display the correct name as the end-user is using Windows Azure Pack
    to access the virtual machines. 
    All posted advice may not be all that accurate. As always, test it in a lab before you try my advice! Best of all, the documentation is your friend.

    Never mind, I think I hacked up my own solution to the question:
    USE [VirtualManagerDB]
    GO
    INSERT INTO [dbo].[tbl_IL_OS]
    ([OSId]
    ,[Name]
    ,[Description]
    ,[Architecture]
    ,[OSFlags]
    ,[VMWareGuestId]
    ,[OSType])
    VALUES
    ('EBAB54C0-A9FA-4A3F-A21C-94775B96A6E5' /* Generate UUID */
    ,'Debian GNU/Linux 6 (64-bit)' /* Limited to 64 Chars */
    ,'Debian GNU/Linux 6 (64-bit)' /* Longer description of Linux Distro */
    ,'amd64' /* Use x86 for i386, amd64 for x86_64 */
    ,'28' /* This remains constant */
    ,'otherLinux64Guest' /* This is meant for VMware, go lookup the VMX spec files for this value */
    ,'1') /* Leave this at one, that's what the other OSes looked like */
    GO
    All posted advice may not be all that accurate. As always, test it in a lab before you try my advice! Best of all, the documentation is your friend.

  • Operating system for the Blackberry Bold 9650?

    Is it possible to get the 7.0 operating system for the Blackberry Bold 9650?

    Sorry. 6.0 is the highest you can go on the 9650. You could load a hybrid OS that has 7.0 enhancements, but in the end it is still a 6.0 OS.

  • What operating systems will the 2013 macbook pro support?

    what operating systems will the 2013 macbook pro support? other than the one it comesv with....

    see
    http://www.apple.com/uk/osx/how-to-upgrade/
    Upgrading from OS X Snow Leopard
    If you’re running Snow Leopard (10.6.x), update to the latest version of Snow Leopard before you download OS X Mavericks from the Mac App Store. Click the Apple icon and choose Software Update to install OS X Snow Leopard 10.6.8, the latest version.
    Upgrading from OS X Leopard
    If you’re running Leopard and would like to upgrade to OS X Mavericks, first you’ll need to upgrade to OS X Snow Leopard. You can purchase OS X Snow Leopard here.

Maybe you are looking for