Expdp from diff home

Hi
if i m having two oracle home 10g and 11g on same server and i want to do expdp of 11g database from 10g home is it possible ?
for exp it is possible but i m not able to do it using expdp
plz suggest

Carlovski wrote:
OK, yes, you could use the expdp utility to launch it from a different oracle home, but it's just a wrapper to make the appropriate calls to DBMS_DATAPUMP.
I'm not sure if doing so would automatically set the coorect 'VERSION' parameters for you.
I really don't see why you would want to do such a thing though.
CarlYou have a good point indeed, Oracle is not setting the correct version...
Assuming it is for further import into a 10.2 database from a 11.2 database :
# sqlplus system/***@hdmo912
SQL*Plus: Release 10.2.0.4.0 - Production on Tue Sep 28 15:27:09 2010
Copyright (c) 1982, 2007, Oracle.  All Rights Reserved.
Connected to:
Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
SQL> show parameter compatible
NAME                                 TYPE                              VALUE
compatible                           string                            11.2.0.1.0From the 10.2.0.4 client on same machine than the database is running on (without version specified)
# expdp system/***@hdmo912 dumpfile=exp11g_10gexec.dmp tables=sysadm.psoprdefn logfile=test1.log
Export: Release 10.2.0.4.0 - 64bit Production on Tuesday, 28 September, 2010 15:30:24
Copyright (c) 2003, 2007, Oracle.  All rights reserved.
Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
Starting "SYSTEM"."SYS_EXPORT_TABLE_01":  system/********@hdmo912 dumpfile=exp11g_10gexec.dmp tables=sysadm.psoprdefn logfile=test1.log
Estimate in progress using BLOCKS method...
Processing object type TABLE_EXPORT/TABLE/TABLE_DATA
Total estimation using BLOCKS method: 64 KB
Processing object type TABLE_EXPORT/TABLE/TABLE
Processing object type TABLE_EXPORT/TABLE/INDEX/INDEX
Processing object type TABLE_EXPORT/TABLE/INDEX/STATISTICS/INDEX_STATISTICS
Processing object type TABLE_EXPORT/TABLE/STATISTICS/TABLE_STATISTICS
. . exported "SYSADM"."PSOPRDEFN"                        41.82 KB     155 rows
Master table "SYSTEM"."SYS_EXPORT_TABLE_01" successfully loaded/unloaded
Dump file set for SYSTEM.SYS_EXPORT_TABLE_01 is:
  /appl/oracle/product/11.2.0/rdbms/log/exp11g_10gexec.dmp
Job "SYSTEM"."SYS_EXPORT_TABLE_01" successfully completed at 15:31:17From the 11.2.0.1 home hosting the database
# export ORACLE_SID=hdmo912
# expdp system/*** dumpfile=exp11g_11gexec.dmp tables=sysadm.psoprdefn logfile=test2.log version=10.2
Export: Release 11.2.0.1.0 - Production on Tue Sep 28 15:34:57 2010
Copyright (c) 1982, 2009, Oracle and/or its affiliates.  All rights reserved.
Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
Starting "SYSTEM"."SYS_EXPORT_TABLE_01":  system/******** dumpfile=exp11g_11gexec.dmp tables=sysadm.psoprdefn logfile=test2.log version=10.2
Estimate in progress using BLOCKS method...
Processing object type TABLE_EXPORT/TABLE/TABLE_DATA
Total estimation using BLOCKS method: 64 KB
Processing object type TABLE_EXPORT/TABLE/TABLE
Processing object type TABLE_EXPORT/TABLE/INDEX/INDEX
Processing object type TABLE_EXPORT/TABLE/INDEX/STATISTICS/INDEX_STATISTICS
Processing object type TABLE_EXPORT/TABLE/STATISTICS/TABLE_STATISTICS
. . exported "SYSADM"."PSOPRDEFN"                        40.23 KB     155 rows
Master table "SYSTEM"."SYS_EXPORT_TABLE_01" successfully loaded/unloaded
Dump file set for SYSTEM.SYS_EXPORT_TABLE_01 is:
  /appl/oracle/product/11.2.0/rdbms/log/exp11g_11gexec.dmp
Job "SYSTEM"."SYS_EXPORT_TABLE_01" successfully completed at 15:35:18From the 10.2.0.4 client on same machine than the database is running on (with version specified)
# expdp system/***@hdmo912 dumpfile=exp11g_10gexec_version.dmp tables=sysadm.psoprdefn logfile=test1.log version=10.2
Export: Release 10.2.0.4.0 - 64bit Production on Tuesday, 28 September, 2010 15:59:59
Copyright (c) 2003, 2007, Oracle.  All rights reserved.
Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
Starting "SYSTEM"."SYS_EXPORT_TABLE_01":  system/********@hdmo912 dumpfile=exp11g_10gexec_version.dmp tables=sysadm.psoprdefn logfile=test1.log version=10.2
Estimate in progress using BLOCKS method...
Processing object type TABLE_EXPORT/TABLE/TABLE_DATA
Total estimation using BLOCKS method: 64 KB
Processing object type TABLE_EXPORT/TABLE/TABLE
Processing object type TABLE_EXPORT/TABLE/INDEX/INDEX
Processing object type TABLE_EXPORT/TABLE/INDEX/STATISTICS/INDEX_STATISTICS
Processing object type TABLE_EXPORT/TABLE/STATISTICS/TABLE_STATISTICS
. . exported "SYSADM"."PSOPRDEFN"                        40.23 KB     155 rows
Master table "SYSTEM"."SYS_EXPORT_TABLE_01" successfully loaded/unloaded
Dump file set for SYSTEM.SYS_EXPORT_TABLE_01 is:
  /appl/oracle/product/11.2.0/rdbms/log/exp11g_10gexec_version.dmp
Job "SYSTEM"."SYS_EXPORT_TABLE_01" successfully completed at 16:00:20Checking the dumpfiles header (see note #462488.1 for the procedure) :
SQL> exec show_dumpfile_info(p_dir=> 'DATA_PUMP_DIR', p_file => 'exp11g_10gexec.dmp')
Purpose..: Obtain details about export dumpfile.        Version: 19-MAR-2008
Required.: RDBMS version: 10.2.0.1.0 or higher
.          Export dumpfile version: 7.3.4.0.0 or higher
.          Export Data Pump dumpfile version: 10.1.0.1.0 or higher
Usage....: execute show_dumfile_info('DIRECTORY', 'DUMPFILE');
Example..: exec show_dumfile_info('MY_DIR', 'expdp_s.dmp')
Filename.: exp11g_10gexec.dmp
Directory: DATA_PUMP_DIR
Disk Path: /appl/oracle/product/11.2.0/rdbms/log/
Filetype.: 1 (Export Data Pump dumpfile)
...File Version....: 3.1 (Oracle11g Release 2: 11.2.0.x)               <----
...Master Present..: 1 (Yes)
...GUID............: 9152D8F5A184E07CE0430A381E35E07C
...File Number.....: 1
...Characterset ID.: 871 (UTF8)
...Creation Date...: Tue Sep 28 15:31:17 2010
...Flags...........: 2
...Job Name........: "SYSTEM"."SYS_EXPORT_TABLE_01"
...Platform........: IBM AIX64/RS6000 V4 - 8.1.0
...Instance........: hdmo912
...Language........: UTF8
...Block size......: 4096
...Metadata Compres: 1 (Yes)
...Data Compressed.: 0 (No)
...Metadata Encrypt: 0 (No)
...Data Encrypted..: 0 (No)
...Column Encrypted: 0 (No)
...Encrypt.pwd. mod: 2 (None)
...Master Piece Cnt: 1
...Master Piece Num: 1
...Job Version.....: 11.02.00.01.00
...Max Items Code..: 22
PL/SQL procedure successfully completed.
SQL> exec show_dumpfile_info(p_dir=> 'DATA_PUMP_DIR', p_file => 'exp11g_11gexec.dmp')
Purpose..: Obtain details about export dumpfile.        Version: 19-MAR-2008
Required.: RDBMS version: 10.2.0.1.0 or higher
.          Export dumpfile version: 7.3.4.0.0 or higher
.          Export Data Pump dumpfile version: 10.1.0.1.0 or higher
Usage....: execute show_dumfile_info('DIRECTORY', 'DUMPFILE');
Example..: exec show_dumfile_info('MY_DIR', 'expdp_s.dmp')
Filename.: exp11g_11gexec.dmp
Directory: DATA_PUMP_DIR
Disk Path: /appl/oracle/product/11.2.0/rdbms/log/
Filetype.: 1 (Export Data Pump dumpfile)
...File Version....: 1.1 (Oracle10g Release 2: 10.2.0.x)               <----
...Master Present..: 1 (Yes)
...GUID............: 9152E932427560D0E0430A381E3560D0
...File Number.....: 1
...Characterset ID.: 871 (UTF8)
...Creation Date...: Tue Sep 28 15:35:18 2010
...Flags...........: 2
...Job Name........: "SYSTEM"."SYS_EXPORT_TABLE_01"
...Platform........: IBM AIX64/RS6000 V4 - 8.1.0
...Language........: UTF8
...Block size......: 4096
...Metadata Compres: 1 (Yes)
...Data Compressed.: 0 (No)
...Metadata Encrypt: 0 (No)
...Data Encrypted..: 0 (No)
...Column Encrypted: 0 (No)
...Encrypt.pwd. mod: 2 (None)
...Job Version.....: 10.02.00.00.00
...Max Items Code..: 22
PL/SQL procedure successfully completed.
SQL> exec show_dumpfile_info(p_dir=> 'DATA_PUMP_DIR', p_file => 'exp11g_10gexec_version.dmp')
Purpose..: Obtain details about export dumpfile.        Version: 19-MAR-2008
Required.: RDBMS version: 10.2.0.1.0 or higher
.          Export dumpfile version: 7.3.4.0.0 or higher
.          Export Data Pump dumpfile version: 10.1.0.1.0 or higher
Usage....: execute show_dumfile_info('DIRECTORY', 'DUMPFILE');
Example..: exec show_dumfile_info('MY_DIR', 'expdp_s.dmp')
Filename.: exp11g_10gexec_version.dmp
Directory: DATA_PUMP_DIR
Disk Path: /appl/oracle/product/11.2.0/rdbms/log/
Filetype.: 1 (Export Data Pump dumpfile)
...File Version....: 1.1 (Oracle10g Release 2: 10.2.0.x)               <----
...Master Present..: 1 (Yes)
...GUID............: 915342B989EDE1DAE0430A381E35E1DA
...File Number.....: 1
...Characterset ID.: 871 (UTF8)
...Creation Date...: Tue Sep 28 16:00:20 2010
...Flags...........: 2
...Job Name........: "SYSTEM"."SYS_EXPORT_TABLE_01"
...Platform........: IBM AIX64/RS6000 V4 - 8.1.0
...Language........: UTF8
...Block size......: 4096
...Metadata Compres: 1 (Yes)
...Data Compressed.: 0 (No)
...Metadata Encrypt: 0 (No)
...Data Encrypted..: 0 (No)
...Column Encrypted: 0 (No)
...Encrypt.pwd. mod: 2 (None)
...Job Version.....: 10.02.00.00.00
...Max Items Code..: 22
PL/SQL procedure successfully completed.Then trying to import the files into a 10.2.0.4 database :
# impdp nicolas/nicolas remap_schema=sysadm:nicolas dumpfile=exp11g_10gexec.dmp logfile=test1_imp>
Import: Release 10.2.0.4.0 - 64bit Production on Tuesday, 28 September, 2010 15:56:45
Copyright (c) 2003, 2007, Oracle.  All rights reserved.
Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bit Production
With the Partitioning, Oracle Label Security, OLAP, Data Mining
and Real Application Testing options
ORA-39001: invalid argument value
ORA-39000: bad dump file specification
ORA-39142: incompatible version number 3.1 in dump file "/appl/oracle/product/11.2.0/rdbms/log/exp11g_10gexec.dmp"
# impdp nicolas/nicolas remap_schema=sysadm:nicolas dumpfile=exp11g_11gexec.dmp logfile=test2_imp>
Import: Release 10.2.0.4.0 - 64bit Production on Tuesday, 28 September, 2010 15:57:01
Copyright (c) 2003, 2007, Oracle.  All rights reserved.
Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bit Production
With the Partitioning, Oracle Label Security, OLAP, Data Mining
and Real Application Testing options
Master table "NICOLAS"."SYS_IMPORT_FULL_01" successfully loaded/unloaded
Starting "NICOLAS"."SYS_IMPORT_FULL_01":  nicolas/******** remap_schema=sysadm:nicolas dumpfile=exp11g_11gexec.dmp logfile=test2_imp.log directory=nic
Processing object type TABLE_EXPORT/TABLE/TABLE
Processing object type TABLE_EXPORT/TABLE/TABLE_DATA
. . imported "NICOLAS"."PSOPRDEFN"                       40.23 KB     155 rows
Processing object type TABLE_EXPORT/TABLE/INDEX/INDEX
Processing object type TABLE_EXPORT/TABLE/INDEX/STATISTICS/INDEX_STATISTICS
Processing object type TABLE_EXPORT/TABLE/STATISTICS/TABLE_STATISTICS
Job "NICOLAS"."SYS_IMPORT_FULL_01" successfully completed at 15:57:06
SQL> drop table psoprdefn;
Table dropped.
SQL> quit
# impdp nicolas/nicolas remap_schema=sysadm:nicolas dumpfile=exp11g_10gexec_version.dmp logfile=t>
Import: Release 10.2.0.4.0 - 64bit Production on Tuesday, 28 September, 2010 16:05:45
Copyright (c) 2003, 2007, Oracle.  All rights reserved.
Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bit Production
With the Partitioning, Oracle Label Security, OLAP, Data Mining
and Real Application Testing options
Master table "NICOLAS"."SYS_IMPORT_FULL_01" successfully loaded/unloaded
Starting "NICOLAS"."SYS_IMPORT_FULL_01":  nicolas/******** remap_schema=sysadm:nicolas dumpfile=exp11g_10gexec_version.dmp logfile=test3_imp.log directory=nic
Processing object type TABLE_EXPORT/TABLE/TABLE
Processing object type TABLE_EXPORT/TABLE/TABLE_DATA
. . imported "NICOLAS"."PSOPRDEFN"                       40.23 KB     155 rows
Processing object type TABLE_EXPORT/TABLE/INDEX/INDEX
Processing object type TABLE_EXPORT/TABLE/INDEX/STATISTICS/INDEX_STATISTICS
Processing object type TABLE_EXPORT/TABLE/STATISTICS/TABLE_STATISTICS
Job "NICOLAS"."SYS_IMPORT_FULL_01" successfully completed at 16:05:48
#So, you should specify VERSION to be able to import on lower version even if you use lower version of expdp utility.
Nicolas.

Similar Messages

  • Regular disconnection from my Home Hub 2.0 on Infi...

    For the last year I've been getting regularly disconnected on the wireless from my Home Hub 2.0 router on Infinity - and have to reset to get the connection back (this happens to all phones and laptops connected) - this is despite the blue lights remaining 'on' on the hub. It's now getting more and more frequent (5 times per day) - making skype calling a challenge. Also the line speed degrades and a reset brings this back up. I contacted the help line a few months ago but failed to fully resolve this. In my mind the home hub is faulty and I need a new one - but seems v difficult to get that to actually happen.
    I'm on the verge of cancelling and going to another provider now I'm out of contract - any advice?  

    From the memory, (which is not very good at the best of times), the Home Hub 2 is not infinity compatible.  The router needs to be able to support PPoE on a WAN port.  The HH2 does not have a WAN port.
    Other than that there are lots of threads on here re: unreliable wireless connections.  Too many to list all the definitive suggestions.  A search should help.
    As to BT replacing the router, BT may replace it if it is deemed faulty within the warranty period.  If the router is over a year old it will be out of warranty and as it was purchased by you as part of the contract it will be your problem to sort out.
    Many on here have replaced or not even used the supplied router.  As long as the replacement supports PPoE and has a WAN port, (i.e. Cable router), you should be OK.  There as also a growing number of routers that are VDSL capable so it may be a consideration to replace the modem as well.  With regards to router replacement this thread may be of interest.
    http://community.bt.com/t5/BT-Infinity/List-of-Routers-to-replace-Home-Hub-3/m-p/298203/highlight/tr...
    Dave

  • HT4979 why can I not send email when away from my home wifi? Am able to receive messages OK, and outgoing mailserver is correct?

    Why am I unable to send email when away from my home wifi ? I am able to receive mail OK, and have double- checked the outgoing server which is correct. This problem is consistent with my Macbook Pro, iPhone, and iPad2.
    Attempts to send messages results in them sitting in the Outbox and never- ending 'sending message' displayed.
    I am able to send using my   me.com  server.
    Home service provider is Cogeco.
    Any help would be appreciated.

    iOS: Unable to send or receive email
    http://support.apple.com/kb/TS3899
    Can’t Send Emails on iPad – Troubleshooting Steps
    http://ipadhelp.com/ipad-help/ipad-cant-send-emails-troubleshooting-steps/
    iPad Mail
    http://www.apple.com/support/ipad/mail/
    Try a Reset - iPad How-Tos  http://ipod.about.com/lr/ipad_how-tos/903396/1/
    Or this - Delete the account in Mail and then set it up again.
     Cheers, Tom

  • How to run expdp from client ?

    Hi All,
    I tried searching google and forums for my issue but to no avail > How to run expdp from client side ....like in my laptop.
    Because currently our PROD database server has no space for expdp dump file. So I want it directed to my laptop which has an extenal USB of 1TB harddisk...via client EXPDP
    import data using impdp command
    Posted on: 08-May-2012 11:36, by user: 841731 -- Relevance: 53% -- Show all results within this thread
    below command is correct or not? if it is not correct could you please send me the correct command. impdp user/pass@databasename schemas=sourceschemaname remap_schema=sourceschemaname:destinationschemaname ...
    System generated Index names different on target database after expdp/impdp
    Posted on: 30-May-2012 11:58, by user: 895124 -- Relevance: 43% -- Show all results within this thread
    After performing expdp/impdp to move data from one database (A) to another (B), the system name generated indexes has different ...
    [ETL] TTS vs expdp/impdp vs ctas (dblink
    Posted on: 08-May-2012 21:10, by user: 869578 -- Relevance: 39% -- Show all results within this thread
    (table : 500 giga, index : 500 giga), how much faster is TTS (transportable tablespace) over expdp/impdp, and over ctas (dblink) ? As you know, the speed of etl depends on the hardware capacity. (io ...
    Oracle Client
    Posted on: 21-Jun-2012 22:47, by user: Sh**** -- Relevance: 32% -- Show all results within this thread
    Hi Guys, Please can you guys elaborate the difference between Oracle Client and Oracle Instant Client. Also, please can you advise from where I can download the Oracle normal ...
    Oracle 10g Client
    Posted on: 05-Jun-2012 10:11, by user: dzm -- Relevance: 26% -- Show all results within this thread
    to search at oracle site and this forum, but i wasn't able to find a link to download the oracle 10g client. I really need especificaly the 10g version. Anybody know the link or another way to download ...
    9i client to access 11g database
    Posted on: 22-Jun-2012 07:31, by user: kkrm333 -- Relevance: 24% -- Show all results within this thread
    Hi, Can i access a 11g database using 9i client? Thanks,
    SQLplus in Oracle Client
    Posted on: 14-Jun-2012 00:36, by user: Tim B. -- Relevance: 24% -- Show all results within this thread
    Hi, I tried to install an 11g oracle client in linux. As I've compared the files with the files when you install using the oracle instant ...
    Re: Information on Oracle Client 11202-1.1.4-6
    Posted on: 05-Jun-2012 03:33, by user: 898763 -- Relevance: 23% -- Show all results within this thread
    Actually thats the client requirement
    Analysing the performance of a single client
    Posted on: 28-Mar-2012 02:05, by user: 880172 -- Relevance: 23% -- Show all results within this thread
    timeouts even on some of the simplest queries. I want to try and get some data about how just this one client is performing and what it’s doing, but everything Google has thrown up so far is orientated around ...
    to make client connection as sys
    Posted on: 12-Jun-2012 22:04, by user: user11221081 -- Relevance: 23% -- Show all results within this thread
    Dear gurus can i connect to my server from my client machine with sysdba without giving sys password i have connected in different ways as sys@abc ...Thanks a lot.

    Though you can initiate the binary from your client side but for the file creation, there is no other way but to store it on the server side. So your best bet would be to get some space free on the server side of yours.
    Aman....

  • ITunes 11 Stops Responding to Bonjour Discovery Multicast Broadcasts, Why?  This stops the the Apple TV 3 from being able to start a new stream from the home share and the iPad remote app can no longer see the home share too.

    I'm having an issue where my Apple TV 3 and all our iPads periodically seem to loose connectivity to an iTunes home share on a Windows 7 PC.  Using a network protocol analyser on the PC I have identified that the point of failure corresponds to the ATV3 sending a bonjour discovery request and getting no reply from iTunes.  Why the ATV3 'forgets' where the home share is is possibly another issue but the root cause of the failure is that iTunes, or more specifically the mDNSResponder service, is not responding to the UDP multicast port 5353 broadcast discovery packet sent by the ATV3 or iPad.  The mDNSResponder service does start responding again after iTunes is restarted thus making the home share accessible once more, however, this frequent drop out is unacceptable and often happens after only a single TV show has been watched from the home share making the solution unworkable for a family, we simply cannot be restarting iTunes constantly it ruins the user experience completely!
    The nature of this failure indicates that the ATV3, the iPads, the host PC and network are all working correctly and the point of failure here is the lack of response to the bonjour discovery protocol with the net result of either a spinning 'connecting to home share' message or the home share just disappearing from the computers section.
    If there is a configuration fix for this please let me know as I haven't located a fix!  Otherwise this seems very much to be a code flaw in iTunes 11 or the mDNSResponder and I would appreciate some input from Apple!  Going on other questions in these forums it would seem the problem is not limited to Windows PCs but also Macs too.  NB: This is not a TCP issue, when the ATV3 or iPad knows the IP of the iTunes server all works flawlessly, it just periodically they seem to refresh the list of home shares and at this point they loose the information about the home share they have just been using because of the non-response to the UDP multicast discovery broadcast packet, that is arriving at the host PC and isn't being blocked by the firewall.
    Many Thanks!

    In my case there was no import from a former mac.
    My problem (at least mine) is that no app that offers media sharing works properly. Neither itunes home sharing nor AirVideo nor EyeTV sharing.
    So I'm pretty sure that this is network issue.
    Adding another user on my mac and sharing a new library works not also. But sharing from another laptop in my WiFi works. So this has to be a network issue on my mac, not only my user, but an issue of the whole system.
    But I'm not willing to reinstall MacOS X for that if I don't have to.

  • We had a MacBook Pro stolen from our home when we were out of town and I am pretty sure we never activated the LoJack type of function on it not sure if its called lojack but you get what I am saying is there any way we can activate such  hardware/app now

    to
    We had a MacBook Pro stolen from our home when we were out of town and I am pretty sure we never activated the LoJack type of function on it not sure if its called lojack but you get what I am saying is there any way we can activate such  hardware/app now so we can possibly recover our laptop? Any one who can point us in the right direction that would be great and we would be very grateful. Thanks So Much

    Lojack for laptops - if that is the product you purchased and installed, you will need to read the user manual or contact the manufacturer as it is 3rd party.  You did file a police report right?

  • Lost User from 7 home premium after upgrading to 8.1.

     I was having installer problems with windows 7 home premium. Nothing would install and the computer was just generally was getting more and more non functional. I couldn't even make a backup system image or restore from a image I had made
    6 months earlier. I decided to just go ahead and install 8.1 over the 7 home premium I was having problems with. I purchased the upgrade, downloaded it and installed it. Now I have lost my user from 7 home premium. I cannot access any files that I used to
    have ownership of with my "Jim" user. I seem to have a user of "[email protected]" and none of my external drives or local files will open any more. Can I insert a "Jim" user back into
    8.1 and then access the unavailable files and folders. Why did 8.1 change my user name and permissions? How do I get back into my things?
    My comp is a Velocity running Intel CoreI7 cpu [email protected] processor. I have 6 drives installed into it And 3 monitors on two display adapters.
    Jim

    Hello Jim,
    Do you mean that you install the Windows 8.1?
    If yes, you can't 'insert a "Jim" user back into 8.1 and then access the unavailable files and folders.', it is by design.
    Do you still have the folder related to user 'Jim' in driver?
    If yes and you can't access the folder, please refer to the following article about taking folder ownership in Windows 8.
    http://www.eightforums.com/tutorials/2808-take-ownership-file-folder-drive-registry-key-windows-8-a.html
    Please note: Since the website is not hosted by Microsoft, the link may change without notice. Microsoft does not guarantee the accuracy of this information.
    Best regards,
    Fangzhou CHEN
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • How can I use an iMac from my home to work on my G5 at my office?

    I've just ordered an iMac Intel and I want to use it from my home to work on my Mac G5 at my office, not just to copy files but to actually run programs on the G5, sort of like "Go to My PC" works with PCs.
    Do I need any special software?
    Any help would be appreciated.
    G4s, G5s, iMac Intel   Mac OS X (10.4.5)  

    Brad-
    Yeah... what you desire is possible, but it's a huge pain. Unless you're really friendly with the network dudes at your office and you have some sort of licensing scheme that accommodates VPN access and networked licensing, this probably won't happen. Shoot, even if you DO have VPN and all of that, this particular type of setup is tricky. I've used SSH to tunnel certain programs between two computers (usually in the same subnet, not miles apart), and it's cool... but rather slow.
    If your time is valuable, I'd weigh it against the cost of purchasing the desired software.

  • Iphone 4s-when wifi is off and I am away from my home connection can I receive and send texts and text messages?  I want to keep my wifi off to limit data (email etc) to when I want to check it.  Cellular is roaming"voice only" it says.Can I get texts?

    When my wifi is off and I'm away from my home connection - it shows wifi off (unless I turn it on to check my email etc.) - and in the settings cellular it shows "voice only". Will I be able to receive and send texts in those settings?  Or check voicemail.  I had wanted to keep my email from coming in all the time and only want to check it periodically - so I turn ON my wifi when I want to check my email.  But when my wifi was off away from home- I hadn't seemed to be getting my texts.  So- do I need to keep wifi roaming connected when away from home to receive and send my texts in real time.  (which is what I want) or am I still able to send and receive texts with my wifi off when I'm away from home.  (When I'm home I am connected to my home data plan automatically through wifi and I get texts when I'm home - but I'm thinking I'm not getting texts in real time - is it because my wifi is off when I'm away from home?  My cellular shows voice only when my wifi is off away from home.  Am I doing it right to receive and send texts away from home?  Or do I need to open up the wifi in order to receive and send text messages.  I know that I would need to turn on wifi roaming - which will use data - for email checking or sending - as well as to use browsing apps and now I'm guessing to receive voice messages I may have missed?  So do I need wifi on to receive texts too?  Thank you - GregorySC

    Hello GregorySC,
    In order to send and receive SMS or MMS messages, you will need to have an active cellular data or Wi-Fi connection.
    You will need these to send and receive iMessages:
    An iPhone, iPad, or iPod touch
    iOS 5.0 or later
    A cellular data connection or a Wi-Fi connection
    A phone number or Apple ID registered with iMessage in Settings > Messages
    iOS: Troubleshooting Messages
    http://support.apple.com/kb/TS2755
    Cheers,
    Allen

  • I had dowloaded all of my itunes library to my iphone from my home computer/my computer crashed and all of the music that was on my itunes is only on my iphone now. How do I take that music from my iphone and put it onto my itunes on my new computer?

    I had downloaded all of my itunes library to my iphone from my home computer, My home computer crashed and all my itunes library was lost but it is still on my iphone. Is there a way that I can take all the music on my iphone that is all of my music from my itunes from my old computer and download it to my new computer that I have another itunes on? I tried to sync the music on my iphone to my itunes and I could not figure out a way to sync the music without erasing all of the music on my iphone. Does anyone have any suggestions?

    For music that you've purchased from Apple that are on your iPhone you should be able to copy to your computer's iTunes via File > Transfer Purchases. Also if you are in the US then you should be able to re-download past music purchases for free : http://support.apple.com/kb/HT2519
    For your own music that you've copied, then if you haven't got a backup on, for example, external drives or CDs/DVDs then you could see if any of the utilities mentioned in this old post still exist and work

  • I have a time capsule connected directly to fiber connection. I have connected a windows server directly to TC and configured it for remote desktop connection. From my interanet I can access srvr but not from my home. What config I need on TC?

    I have a time capsule directly connected to fibre optic point out. All pcs and macs are connected wirelessly to the internet. I have connected a windows server pc to TC. When configured for Remote desktop connection, I can access windows server from within interanet but don't know how to access it from internet. I guess I need to change some settings in TC to get some ip adress for the remote desktop connection from my home. Anyone who can help me out? Appreciate it.
    Narmin

    I am a little lost now.. I have read again your title and your first post.. and they seem inconsistent.
    In the title you state.
    From my interanet I can access srvr but not from my home.
    Interanet is not a word I know.. I assumed intranet...are you talking about internet or intranet? And just to be clear say WAN or LAN.. !! Is your home part of the interanet??
    In the first post you state,
    I can access windows server from within interanet but don't know how to access it from internet.
    Now this is more normal.. the issue is not in the home at all, it is accessible from there but fails from internet. If this is correct, then you can do a few obvious things to determine where the problem is.
    But first I need to know are you actually testing from a different internet connection to your home lan.. you are not just trying the public IP from inside the LAN as that will fail due to the TC not doing NAT Loopback.
    I am also assuming the TC is the only router in the network, and has the public IP on the WAN interface.
    And I am also assuming you have turned on the ping responder and you can actually ping your public ip from the internet and get a response. This helps no end in figuring out where there are issues. Strange but I have no idea if there is a ping responder in the TC WAN so you might need to forward that as well. Also if you have a dynamic public ip address are you using dyndns or no-ip or some other service to connect.
    1. Test bypassing the TC.. plug the internet connection straight into the windows server,, and test if you have access. If yes, the TC is the problem.. if not, your setup on the windows server is wrong.. look at firewall in particular.
    2. Assuming from test 1 the TC is the problem, Post the screen shots of the port forwarding setup for us to look at.. that is by far the easiest way to check it out.
    There are lots of references to port forwarding in the TC.. eg
    http://must-know-mac.blogspot.com/2008/07/how-to-port-forward-time-capsule.html
    The things that generally go wrong are firewall on the computer that is accepting the port.
    The ISP doesn't allow connections on a particular port. (not likely in your case)
    The router is behind another router.. double NAT will kill any port forward.
    Upnp has already allocated a port.. not an issue as TC doesn't use upnp although a reboot of everything after you set port forwards is well worth it.. amazing how things don't stick properly without a reboot.
    IP on the receiving device is not static and so changes.
    Not enough or right type of ports are opened. This is always messier than it looks as one port is often not enough for two way communications.

  • An app will not completely download from the App Store to my iPhone 5S. Neither can I terminate the download by trying to delete it. The app is useless to me and so I would like to remove the icon from my home screen. How can I do this?

    I tried to download the app "Google Translate" from the App Store onto my iPhone 5s. However, the download will not complete. As well, when I try to delete the icon from my home screen, it will not go away.  I am very frustrated as this has never happened before and I have gotten many paid and free apps from the App Store. I hope someone can solve my dilemma.  Thank you kindly.

    What have you tried to get the app to finish downloading e.g. have you tried logging out and back into your account on your phone, disconnecting and reconnecting to your network, soft-reset of your phone (press and hold both the sleep and home buttons for about 10 to 15 seconds, ignore the red slider, after which the Apple logo should appear and it should reboot) ?
    You could also try downloading the update on your computer's iTunes and see if you can sync it over to your phone (or delete the app its Apps tab when connected to your computer's iTunes and sync the new version - deleting the app will delete its contents).

  • BT Openzone showing from my Home Hub

    My PC is picking up 3 services apparently coming from my router:
    My BB service
    My BT Fon service - I undertand this
    A BT Openzone service - I don't understand this.
    I'm sure they're all from my router as the signal strength is precisely the same. Can anyone enlighten me?
    Why is a BT OpenZone service apprently coming from my Home Hub 3?
    Thanks
    Paul
    Solved!
    Go to Solution.

    The total bandwidth for "guest" users is resricted to 500kb. Openzone has been using the home hubs for a few years now, BTFON is a fairly recent addition to fit in with the international Fonera network http://en.wikipedia.org/wiki/FON
    I think you may find that BTFON users simply end up on the BT Openzone platform.
    There are some useful help pages here, for BT Broadband customers only, on my personal website.
    BT Broadband customers - help with broadband, WiFi, networking, e-mail and phones.

  • Upgrade from Windows Home Server 2011

    Even though Windows Server 2012 Essentials is being mentioned as a replacement for Windows Home Server 2011, there doesn't seem to be any documentation or mention of can you upgrade from Windows Home Server 2011 to Windows Server 2012 Essentials?
    Will this work with the beta download and will we then be able to upgrade this version to the RC and/or release version?
    As you may guess I have a Windows Home Server 2011 and am interested in looking at Windows Server 2012 Essentials to see what it offers me. The storage spaces sounds exactly what I want to replace the drive extender on the previous home server version. The
    problem is that I don't mind sacrificing my present server box by installing the beta but it would be nice if it actually retained what settings it could via an upgrade option, which I could then have a chance of using with a proper release version.
     

    Just clarifying about the 'upgrade path' and 32b vs 64b.
    Yes, no in-place upgrade. However, one could theorise about some form of 'migration' being possible, where the list of users, the content of your shares, the current backups, would be 'moved' from old box to new.
    I was in fact pretty sure no such process existed. (Wouldn't it be neat though? AND in future _at least theoretically_ possible, using processes similar to SBS AD migration.)
    From this perspective putting the new box onto the network is similar to replacing WHSv1 with WHS11, in that nothing is carried over. No gain, but no lesser. Working on currently available information.
    The later comment about the work laptop is, TTBOMK, a resounding 'NO'. When attempting to join a member of another AD the 'connect' process stated 'You must 1st remove the PC from the other AD'. I haven't tested this extensively but believe that PC's _capable_
    of operating in an AD (Pro, vs Home, versions) will be made members of the WS12E AD. It is only PC's that do not have 'domain join' capability that are left in workgroup mode.
    TTBOMK, AFAICS, so far, etc...

  • How do I access my work mac from my home mac?

    how do I access my work mac from my home mac?

    Your best choice would be to use Back to My Mac with your iCloud Account. For more informatio please see the following topics.
    OS X: Using and Troubleshooting Back to My Mac with your iCloud account
    http://support.apple.com/kb/HT4907
    OS X: About Back to my Mac security with iCloud
    http://support.apple.com/kb/HT4908
    Hope this helps you and let us know how it goes.

Maybe you are looking for

  • Very Very long ping time, only on arch, and preload doesn't work

    Arch is the most amazing Linux system I have ever used. I get like a 30 second boot time from start to finish, i'm just wowed. I am using arch64, and have only 2 problems! 1. I have like a 32ms ping, for any site, toooo big. I have a 3com NIC card wh

  • Text Starts Scrolling down the page when i type

    Im a law student and take an extensive amount of notes in class on my laptop. I tried switching from MS word to Pages, but intermittently run into problems that have caused me to stop using pages. Ill be typing, and all of the sudden my notes will st

  • Short dump with decimal issue

    Now I want to get total weight of the material as weight * quantity. When I doing this process the program short dump. If my user setting in su01 is 1,234,567.89 it will work normally, but if I changed my user setting to 1.234.567,89 it will get weig

  • Transformation: 2 rows into 1

    Hello, in a transformation i have to merge rows. My soruce is a DSO with the following structure: - Journey (Key) - Step (Key) - City - Start-Flag - End-Flag My target is a DSO with the structure - Journey (Key) - City-From - City-To In SOURCE_PACKAG

  • Installing the Forms Runtime Component

    Hi everybody..... I'm having problems on deploying my forms 6i application in a client-server environment. When a select to install only the runtime component, it does not create the environment variables FORMS60_PATH, UI_ICON and TNS_ADMIN. After in