Imp full=y issue(Sorry guys- Repost)

Dear All,
Database: 10.2.0.1 OS: AIX 5L
i am exporting a full db dump from Server A to Server B. for this purpose i created a user dbadmin on both source and target database and granted him (EXP_FULL_DATABASE & IMP_FULL_DATABASE) privlegs. Server B is a empty Database. i issued follwoing command
" imp dbadmin/<passwd> full=y file=filename log ignore=y "
i am refering to logfile which says :
*. importing SYS's objects into SYS *
* importing SYSMAN's objects into SYSMAN *
* importing SYSTEM's objects into SYSTEM *
though sys / system objects should never be exported/imported. Correct me if i wrong , then why its importing SYS's objects ..?
further more , i could see few tables belonging to sys/system with name "REPCAT$ been imported in target database.
Regards.
ARS
Edited by: ARS on Nov 6, 2009 2:55 AM

Check below link.
http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:11511550949535
Ctrl+F "not sure if the sys,system and other users"
and read reply by Tom sir.
yes, some sys and system objects are exported (public synonyms are owned... by sys, application context's are owned... by sys - for example)
Hth
Girish Sharma

Similar Messages

  • Imp full=y issue.

    Dear All,
    Database: 10.2.0.1 OS: AIX 5L
    i am exporting a full db dump from Server A to Server B. for this purpose i created a user dbadmin on both source and target database and granted him (EXP_FULL_DATABASE & IMP_FULL_DATABASE) privlegs. Server B is a empty Database. i issued follwoing command
    " imp dbadmin/<passwd> full=y file=filename log ignore=y "
    i am refering to logfile which says :
    *. importing SYS's objects into SYS *
    * importing SYSMAN's objects into SYSMAN *
    * importing SYSTEM's objects into SYSTEM *
    though sys / system objects should never be exported/imported. Correct me if i wrong , then why its importing SYS's objects ..?
    further more , i could see few tables belonging to sys/system with name "REPCAT$ been imported in target database.
    Regards.
    ARS

    Check below link.
    http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:11511550949535
    Ctrl+F "not sure if the sys,system and other users"
    and read reply by Tom sir.
    yes, some sys and system objects are exported (public synonyms are owned... by sys, application context's are owned... by sys - for example)
    Hth
    Girish Sharma

  • Imp full db successful without warnings

    I am doing research to imp full db during my migration from 8i/Solaris db to 10g/windows
    Here is the command i come up with , make me right if i am not.....
    imp system/ora2000sys full=yes ignore=no statistics=none log=clin_full_import.log
    FILE=
    D:\yo_momma\dave_is_ugly_1.dmp,
    D:\yo_momma\dave_is_ugly_2.dmp,
    D:\yo_momma\dave_is_ugly_3.dmp
    if this is not successful i will drop users cascade and re-run it ....
    Exp successful without warnings.....
    /u01/app/oracle/admin/clin/backups/com.par
    userid=system/******
    full=Y
    inctype=complete
    filesize=1g
    recordlength=4096
    buffer=16384
    direct=Y

    DBA2011 wrote:
    I am doing research to imp full db during my migration from 8i/Solaris db to 10g/windows
    Here is the command i come up with , make me right if i am not.....
    imp system/ora2000sys full=yes ignore=no statistics=none log=clin_full_import.log
    FILE=
    D:\yo_momma\dave_is_ugly_1.dmp,
    D:\yo_momma\dave_is_ugly_2.dmp,
    D:\yo_momma\dave_is_ugly_3.dmp
    if this is not successful i will drop users cascade and re-run it ....
    Exp successful without warnings.....
    /u01/app/oracle/admin/clin/backups/com.par
    userid=system/******
    full=Y
    inctype=complete
    filesize=1g
    recordlength=4096
    buffer=16384
    direct=Ylook OK to me
    Handle:     DBA2011
    Email:     [email protected]
    Status Level:     Newbie (35)
    Registered:     Sep 9, 2005
    Total Posts:     2,771
    Total Questions:     268 (137 unresolved)
    Why so many unanswered questions?

  • Needs another simple fix ! ( Sorry guys i was stuck w/something else! )

    Hi Guys,
    What i m trying to do here is to sum all the transactions of current month from one table and get the balance of highest date of previous month from other table for a specific agent. I only want one single value. I wrote something (below) but it doesn't work. Please help me out; thnx
    Select (Sum(a.Dollar)+(c.Balance)) Outstanding
    From Sajjad.Agent_Trans a, Sajjad.Agent b, Sajjad.Agent_Payments c
    Where a.Id = b.Id
    And b.Source = c.Source
    And b.Source = 'IQ'
    And c.Pdate = (Select Max(Pdate)
    From Sajjad.Agent_Payments
    Where Source = 'IQ'
    And Pdate Between Last_Day(Add_Months(Sysdate,-2)) + 1
    And Last_Day(Add_Months(Sysdate,-1))
    Group By c.Balance
    Message was edited by:
    imatif
    Nobody dare to take this challenge ! Strange...
    Message was edited by:
    imatif
    Message was edited by:
    imatif
    Message was edited by:
    imatif
    sorry Guys i was stuck with somethng else and i thought that i have given enough intro to my problem. Anyways it was given me NO ROWS SELECTED msg. then i noticed that if i wrote pdate as To_Char(Pdate,'dd/mm/rr') = ... in all my query only than it gives result. But why i have to write like this ? As a side note i m taking input through this select statement (select sysdata into pdate from dual;) in my forms.
    Message was edited by:
    imatif
    Message was edited by:
    imatif

    <quote>
    i noticed that if i wrote pdate as To_Char(Pdate,'dd/mm/rr') = ... in all my query only than it gives result. But why i have to write like this ?
    </quote>
    Look at the constraints on your subquery:
    SELECT   (SUM (a.dollar) + (c.balance)) outstanding
        FROM sajjad.agent_trans a, sajjad.AGENT b, sajjad.agent_payments c
       WHERE a.ID = b.ID
         AND b.SOURCE = c.SOURCE
         AND b.SOURCE = 'IQ'
         AND c.pdate =
               (SELECT MAX (pdate)
                  FROM sajjad.agent_payments
                 WHERE SOURCE = 'IQ'
                   AND pdate BETWEEN LAST_DAY (ADD_MONTHS (SYSDATE, -2)) + 1
                                 AND LAST_DAY (ADD_MONTHS (SYSDATE, -1)))
    GROUP BY c.balance;Examine the values you're looking between:
    SQL> SELECT to_char(LAST_DAY (ADD_MONTHS (SYSDATE, -2)) + 1, 'yyyy-mm-dd hh24:mi:ss') AS d1,
      2         to_char(LAST_DAY (ADD_MONTHS (SYSDATE, -1)), 'yyyy-mm-dd hh24:mi:ss') AS d2
      3    FROM dual;
    D1                  D2
    2005-08-01 09:42:06 2005-08-31 09:42:06When you perform your to_char() conversion you're throwing away the hours/minutes/seconds components of the date. This may be what you're trying to do.
    SELECT   (SUM (a.dollar) + (c.balance)) outstanding
        FROM sajjad.agent_trans a, sajjad.AGENT b, sajjad.agent_payments c
       WHERE a.ID = b.ID
         AND b.SOURCE = c.SOURCE
         AND b.SOURCE = 'IQ'
         AND c.pdate =
               (SELECT MAX (pdate)
                  FROM sajjad.agent_payments
                 WHERE SOURCE = 'IQ'
                   AND pdate >= LAST_DAY (ADD_MONTHS (TRUNC(SYSDATE), -2)) + 1
                   AND pdate < LAST_DAY (ADD_MONTHS (TRUNC(SYSDATE), -1)) + 1
    GROUP BY c.balance;Oh, and it took me a bit to realized that you'd updated your initial post instead of adding a new one. I suspect that many folk look only at the newest posts instead of scrolling though all of the existing ones looking for changes that may have been made to them.

  • How do you set a default on the Mac that automatically starts a sentence with a capital letter after a full stop? Thanks guys....

    How do you set a default on the Mac that automatically starts a sentence with a capital letter after a full stop? Thanks guys....

    I use SpellCatcher.  
    17" 2.2GHz i7 Quad-Core MacBook Pro  8G RAM  750G HD + OCZ Vertex 3 SSD Boot HD 

  • Still having problems here....sorry guys!!!

    Sorry guys for being a pain...but I think I tried all of the suggestions you offered and still nothing!! Maybe I am doing something wrong on my end.
    I've never seen this happen but maybe you guys have. When you tap the mail icon you see inbox,trash,sent,junk and what not....well mine flickers back and forth from all those options to just the 'inbox" option and then finally settles on the inbox option and sends me the message "can't connect to server"! This is killing me! I have 91 junk emails that I can't get rid of and I hate that! OCD!!!
    I am not that great with computers so any info sent could be put into terms that even I can undersatnd (construction business) would be helpful! You guys are great and thanks!!!

    Thanks! I had actually done a little work on this before checking the message boards, and had figured out to grab the currently active InternalFrame, but wasn't sure how to get the text in it. I then figured out to grab the content pane (getContentPane();), but how do I read the text from the content pane to write? I looked quickly at the online API, but didn't see any methods for JPanel that would get the text. Would it be getAccessibleContext();? I'm still looking at write methods of java.io.*;, but I'm still learning about reading and writing. I know if I had used a JTextArea, it would be as simple as reading and writing strings, but I went with a JTextPane because I wanted the extra functionality (dealing with HTML and RTF.) The text editor I'm building is barely functional, but I'm doing this to learn more about Java and hopefully create something I can use regularly. My code is at home, but I think it went something like this in my fileSaveListener class, actionPerformed() method:
    JInternalFrame curFrame = desktop.getSelectedFrame(); // desktop is my main JFrame that houses the JInternalFrame
    Container currentContentPane = curFrame.getContentPane();
    That's as far as I've gotten. If you need more code, I'll post again when I get home tonight. Thanks for all your help. I'm kind of flying blind with a lot of the Swing stuff, but I always check the API to figure out things for myself before I come here. Just so you know I'm not totally relying on the message boards for all my code. I do attempt to write my own first instead of using everyone else's code. Thanks again.
    James

  • Full screen issues prior to 11

    i always seem to find myself wondering, do developers even use their own products? i would assume they do, but i keep seeing stupid workflow issues or simple problems apple was always known for not having. i wont even begin to discuss the direction the hardware is taking (underpowered mini ipad? unreparable/non-upgradable macbook pro?) sheesh, the least you guys could do is make the software work, thats what we pay for. stop worrying about deadlines so much and "make it just work" as youve always been recognized for. ever since mountain lion and full screen apps in osx, it seems as if no one ever used itunes in full screen mode. was it meant to dump you out to the desktop whenever a fullscreen video finishes playback? i patiently waited for the bug fix; though you debut an entirely new version of itunes, and it has yet to be fixed. funny thing is, it has gotten worse. to clarify, itunes is in full screen mode and i choose say, a podcast. although itunes is in position "2" in mission control (dashboard is position "0"), to the right of my primary desktop (position "1"), and fullscreen video playback appears in position "3," upon playback completion i am returned past itunes to my primary desktop. i dont know how this wasnt picked up on and fixed prior to or upon release of version 11. doesnt make much sense to me as to why i have to swipe back to itunes from my desktop to choose the next video since i was in itunes when i chose the video in the first place. in addition, ive also noticed since the release of version 11 that when a video is playing in fullscreen (position "3") and i swipe back to fullscreen itunes (position "2") and choose another video to play without stopping playback, the itunes window replaces my primary desktop (position "1"), leaves the blank grey textured background usually seen behind full screen itunes in position "2" (swiping to it only reverts you back to position "1"), and playback starts fullscreen in its intended place (position "3"). the only ways to fix it is toggle the full screen option for itunes, end the video prior to selecting a different one (which as aforementioned dumps you back to the desktop in position "1"), or quit and restart itunes. aside from the fact that no one seems to like all the "streamlining" that you did to the UI (including me; i dont get the point), i dont understand how you put in so much work in redeveloping an application that wasnt 100% prior to. yes it looks cooler, and sure its cleaner, but is it practical? the workflow is terrible. sidebars became a standard for a reason, they work. you just made a UI that requires me to click more and figure out where you moved everything. did you improve its function? did you simplify its operation? in my opinion, and i imagine many will agree, absolutely not. stop worrying about how things look and pay attention to how things work first. you are deviating from your principal business model and becoming just like all the other development companies who care for nothing but their profits and shareholders. i understand making money is any business's primary goal, but remember what got you here; remember why you have loyal customers. if you forget, we wont be around to catch you when you fall.

    I just gave the 4oD site a try (using this link) with the latest runtime and I'm seeing the the scrubber bar, popout and full screen buttons.  I tried IE, Firefox and Chrome.  Could you try doing a clean install and try again?
    How do I do a clean install of Flash Player?
    Thanks,
    Chris

  • Exp/Imp full database

    Hello guys,
    I'm having an issue with importing full database from one database(machine 1) to another database (machine2).
    I am getting errors that users don't exist, datafile cannot be read etc errors.
    I'm using Windows, and Oracle 9.2.0.6
    How can I export the 'create objects' scripts from the source db that can run on the target db?
    Any help appreciated.
    Thanks,
    Bharath

    thank you. I actually sorted it out. The path of the datafiles in the source database is not present for the target database. So I created a similar path but kept no datafiles in it.
    the import ran successfully and created the users and tablespaces as well.
    thanks again

  • Full screen issue when utilizing Ease of Use on screen keyboard and RDP in Win8.1

    Hello,
    I am exploring using touch technology with our point of sale application which is delivered to our clients using RDP.  The default touch keyboard in Win8 is basically useless for our application so we enabled the touch keyboard under Ease of Use (EoU)
    which does meet our requirements.   We enabled the KB in docked mode so it is always displayed and locked to the bottom of the display.  The issue is that when we start an RDP session in full screen mode, the RDP session is using the whole screen
    and slipping under the docked EoU KB.  Is there a means to have RDP recognize the reduced screen size with the EoU KB docked and only use the available screen real estate?  I understand that I can configure the RDP settings manually and approximate
    what I'm looking for but this drops the session into a window which is somethibg I'm looking to avoid.

    Hi Steve,
    Thank you for post in Windows Server Forum.
    As per my research, I can say that you need to set the RDP screen size manually. So after setting the size of Full screen RDP you can able to use. You can also try to switch the application in Remote Desktop connection by “Ctrl+Alt+Break”. Please check
    the shortcut to be used when using RDC.
    Keyboard shortcuts
    http://windows.microsoft.com/en-in/windows/keyboard-shortcuts#keyboard-shortcuts=windows-8
    Hope it helps!
    Thanks,
    Dharmesh

  • Office Web Apps Issue - "Sorry, something went wrong" message when opening a document (any MS docx,ppt etc) in IE. With Chrome, it pops (Microsoft Office needs your permission) message and on RUN, it opens the document.

    When opening any Microsoft documents ( docx, ppt etc) in SharePoint 2013,
    Internet Explorer behavior : "Sorry, something went wrong" An unexpected error has occurred message and then nothing happens. 
    In Chrome : Pops (Microsoft Office needs your permission) message and on clicking RUN, it opens the document.
    In Firefox : the documents opens, after asking which application do you want to use to open it.
    The feature (Open Documents in Client Applications by Default) is not activate.
    Why the MS documents are not working in IE 10?

    Hi,
    According to your post, my understanding is that you failed to open Microsoft documents in SharePoint 2013.
    I recommend to Run the following PowerShell in OWA Server :
    Remove-OfficeWebAppsHost # To Remove any restriction
    Or
    New-OfficeWebAppsHost -Domain <String> # To allow specific domain Name
    In addition, you can allow OAuth via HTTP using the following commands:
    $config = (Get-SPSecurityTokenServiceConfig)
    $config.AllowOAuthOverHttp = $true
    $config.Update()
    Here are two similar articles for you to take a look at:
    http://blogs.msdn.com/b/fabdulwahab/archive/2013/10/30/office-web-apps-with-sharepoint-2013-issues.aspx
    http://stevemannspath.blogspot.in/2013/03/sharepoint-2013-office-web-apps-issue.html
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • Imp full db successful with warnings

    Looking for options to fix those , or can i ignore them? What would be side effect if i drop/cascade users and re-run imp after increasing tablespace TS_PUBLIC size or i should not do that? and just fix the little warnings or even just ignore them?
    Most of tables (i would say 95% ) & there data imported successfully after full imp , db size is 80GB around, import terminated successfully with warnings , which are below.....
    IMP-00017: following statement failed with ORACLE error 1659:
    "CREATE TABLE "CA_QUERY_1"
    "ABLESPACE "TS_PUBLIC""
    IMP-00041: Warning: object created with compilation warnings
    "CREATE FORCE VIEW "ADMIN"."CHECK_EXTENTS_V"
    IMP-00041: Warning: object created with compilation warnings
    "CREATE TRIGGER MT1758.MEDDRA_MT1758_THE_SYN_UPD"

    DBA2011 wrote:
    Looking for options to fix those , or can i ignore them? What would be side effect if i drop/cascade users and re-run imp after increasing tablespace TS_PUBLIC size or i should not do that? and just fix the little warnings or even just ignore them?
    Most of tables (i would say 95% ) & there data imported successfully after full imp , db size is 80GB around, import terminated successfully with warnings , which are below.....
    IMP-00017: following statement failed with ORACLE error 1659:
    "CREATE TABLE "CA_QUERY_1"
    "ABLESPACE "TS_PUBLIC""
    IMP-00041: Warning: object created with compilation warnings
    "CREATE FORCE VIEW "ADMIN"."CHECK_EXTENTS_V"
    IMP-00041: Warning: object created with compilation warnings
    "CREATE TRIGGER MT1758.MEDDRA_MT1758_THE_SYN_UPD"; I would suggest you to look at export log and find out which are the tables that got failed and import only those tables again. Since the size is quite high as you said.
    Secondly, since 95% tables are already import, so i suggest you to increase the Tablespace size by adding datafile or extending existing one, then run the import for rest 5% tables.
    Third, You said can you ignore warning? During import oracle tries to create Views, it first check if the tables from which view is being create are already exists or not. If the tables doesn't exists oracle will create view forcefully, and mark these view as invalid. The only way to make the views valid is to alter the views definition to point to the correct base tables.
    So there is little activity left after import is done with warning, that you have to alter the view definitions so that correct tables can be used.
    Also see MOS -> IMP-00041 ORA-04063 FROMUSER/TOUSER IMPORT INTO NEW DATABASE [ID 1059520.6]
    Hope my suggestions helps you

  • Imp full oracle 10G database window 2003

    Hi Experts,
    I made a full data based exp as
    exp USERID=SYSTEM/scott@cas full=y FILE=D:\Oraclebackup\CAS\exports\casdatabase_042009.dmpLOG=D:\Oraclebackup\CLS\exports\logs\exportTables_042009.log OBJECT_CONSISTENT=Y STATISTICS=NONE
    then I create a blank database with new DBname in Oracle 10G in window 32 bit 2003
    I try to imp this full data exp. However I got lots of message as
    importing SYSTEM's objects into SYSTEM
    IMP-00061: Warning: Object type "SYSTEM"."REPCAT$_OBJECT_NULL_VECTOR" already exists with a different identifier
    "CREATE TYPE "REPCAT$_OBJECT_NULL_VECTOR" TIMESTAMP '2005-10-17:13:31:32' OI"
    "D '306C410305254B08A55576824763662E' AS OBJECT"
    " -- type owner, name, hashcode for the type represented by null_vector"
    " type_owner VARCHAR2(30),"
    " type_name VARCHAR2(30),"
    " type_hashcode RAW(17),"
    " -- null_vector for a particular object instance"
    " -- ROBJ REVISIT: should only contain the null image, and not version#"
    " null_vector RAW(2000)"
    IMP-00061: Warning: Object type "OLAPSYS"."ALL_OLAP2_AW_METADATA_O" already exists with a different identifier
    "CREATE TYPE "ALL_OLAP2_AW_METADATA_O" TIMESTAMP '2005-10-17:13:45:23' OID '"
    "B8722EEBE57D428296D658C522D2209F' AS OBJECT ("
    It seems that try to duplicate system/sys objects
    aslo I got message as
    ORA-04052: error occurred when looking up remote object [email protected]
    ORA-00604: error occurred at recursive SQL level 1
    ORA-02019: connection description for remote database not found
    Please let me know if you have experience for full database IMP.
    Thanks,
    JiM

    These types of errors are expected. The problem is that types and tables are created as the database gets created. As far as I know SYS owned objects are never exported/imported, but other schema objects are exported and imported. These types of errors are generally ok since the object exists in the target database when the database is created with certain objects.
    I'm not familar with this error:
    ORA-04052: error occurred when looking up remote object [email protected]
    Dean

  • Exp/imp full or transportable tablespaces?

    Hi Experts,
    DB version: 10.2.0.4 64 bit enterprise edition
    OS version: Windows 2003 R2 64 bit
    here database moving from 10.2.0.4 enterprise edition to standard edition.
    i have went through metalink, i found
    *10G : Step by Step Procedure to Migrate from Enterprise Edition to Standard Edition [ID 465189.1]*
    *Converting An Enterprise Edition Database To Standard Edition [ID 139642.1]*
    so i have taken export of full database before that i have create a DBLINK & TABLES ,
    i have impoted into standard edition but i have missed those DBLINKS and grants will imported?
    Thanks.

    hi guru,
    my expectation is the entire database should pilot to new server with standard edition. i have read articles from metalink, as per traditional export/import is a better.
    By that process i tested,
    1) production database:-
    a)created some tables, one database link
    b) exp system/*** full=y file=exp.dmp log=exp.log
    2)another side, i have created a dummy database using DBCA, and created some tablespaces as exist in export side.
    a) imp system/*** full=y file=exp.dmp log=imp.log
    so after successful import, i have checked objects but i missed the DBLINK from production.
    1)my question is any other parameters should be process within import? to perform full export/import
    2)all the schemas will be imported or manully need to create?
    3)grants will be imported?
    4) what about constraints.
    ignore=y rows=n.i want to export rows also(entire database)

  • Sharepoint App Store Issue - Sorry, we can't seem to connect to the SharePoint Store. Try again in a bit.

    I have just setup a SharePoint 2013 server and attempted to enable the App store by using the following guide:
    http://www.naumanahmed.com/2012/07/sharepoint-2013-app-management-service.html#!/2012/07/sharepoint-2013-app-management-service.html
    Everything seemed to go ok until i attempted to download an app.
    When SharePoint attempts to get to the app store i get an error saying 'Sorry, we can't seem to connect to the SharePoint Store. Try
    again in a bit.'.  If i look at the logs the only error i can see relating to the App Marketplace is this:
    An exception was thrown while running task 'GetOfficeMarkets'. Microsoft.SharePoint.SPException: Sorry, we can't seem to connect to the SharePoint Store. Try again in a bit.
    at Microsoft.SharePoint.Marketplace.OfficeProxy.OfficeProxy.GetMarkets(String userDefaultBillingMarket, String userDefaultContentMarket, String userIP, List`1& markets, Boolean& validDefault)
    at Microsoft.SharePoint.ApplicationPages.StorefrontBase.GetOfficeMarkets(HttpRequest request, List`1& markets, Boolean& validDefaults)
    at Microsoft.SharePoint.ApplicationPages.StorefrontBase.TaskGetOfficeMarkets()
    at Microsoft.SharePoint.ApplicationPages.StorefrontBase.TryRunTask(TryGetOutput taskMethod)
    The server was using a proxy to connect to the internet, but since getting this error i have allowed it to directly access the internet on port 80 and 443.
    Any Help would be greatly appreciated.

    Are we able to access sharepoint store from PC
    http://office.microsoft.com/en-in/store/
    Use fiddler and netmon for blocked ports
    Make sure your app domain works fine.
    Make sure App Management Service and Microsoft SharePoint Foundation Subscription Settings Service is started on your server.
    Make sure App Management Service Application and Microsoft SharePoint Foundation Subscription Settings Service Application is started.
    Check the detail error message of ULS log  to determine the exact cause of the error.
    Also you can refer to the similar blog:
    http://sharepoint-sezai-moss-2007.blogspot.com/2012/12/sharepoint-server-2013-rtm-apps-sorry.html
    Reference:
    https://www.nothingbutsharepoint.com/sites/devwiki/articles/Pages/Configure-an-Environment-for-Apps-for-SharePoint-2013.aspx
    http://www.naumanahmed.com/2012/07/sharepoint-2013-app-management-service.html
    http://blogs.technet.com/b/lukeb/archive/2013/05/09/sharepoint-microsoft-sharepoint-store.aspx
     checked network, DNS, proxy, certificates, App/System Logs, ULS logs.. nothing....   then it clicked!
    Dive into Central Admin->Manage Web Applications,
    select the web-application and up in the Ribbon, select Manage Features
    now ACTIVATE for internet access to the Store!
    "Apps that require accessible internet facing endpoints"
    "Allow users to acquire apps that require internet facing"
    "endpoints from the SharePoint Store."
    IISRESET and voila! everything works fine.
    If this helped you resolve your issue, please mark it Answered

  • IE Issues ~ Sorry this is done to death...

    Hello,
    The name's Jason. As my subject line says, I'm sorry that this has been done to death, but I'm another iWeb newbie who was gung-ho about posting an immaculate site, only to realize that its perfection in Safari and Firefox was only trumped by its shoddiness in Internet Explorer.
    Here is the link to my site: http://web.me.com/ikonic.images/ikonic.images/Welcome.html
    It's been said that some of you saviors out there might be able to tell what's wrong just by visiting the site. It's also been said that you might be able to offer me some ideas and advice on how to fix it and at least get it to look respectable on IE. Please visit my site if you don't mind lending assistance in this manner.
    The main issue my site seems to be having in IE is with Text Overlapping. Primarily on the "Welcome" page, and the "Services" page. In iWeb, the font selected (Gills Sans) shows up smaller, but in IE it's larger and ends up overlapping the text beneath it. Obviously, IE viewers can't read much of the overlapped text.
    I hope someone can shed some light. Meanwhile, I'm going to continue reading up on just how unimpressive IE is, and tinker with the site some more. Thanks!

    Which I think means that almost 200 of the fonts listed in iWeb '09 will cause problems when viewed on a PC. No?
    Are you familiar with the concept of Web (or Browser) Safe Fonts? In Fontbook there is a collection for that called Web. Here is some more info:
    http://www.ampsoft.net/webdesign-l/WindowsMacFonts.html
    If you use a font which the viewing machine does not have installed, something else will be substituted. Whether that will cause a problem can only be determined by testing. In iWeb you can also turn your text into a graphic by adding an invisible degree of shadow to it, and that will ensure the viewer sees the same font that you are using.

Maybe you are looking for

  • How to upload a file from java to php

    hi i am trying to upload/send a file from client using swing/applet and receiving it with php code. here is the php code which uploads the post file from the client $uploaddir = "/home/raghavendra/Documents/"; $file = basename( $_FILES["uploadedfile"

  • Designer Version for O9i ver.  9.2.0.1.0 ?

    Hi, Where can i get Oracle Designer version that goes with Oracle 9.2.0.1.0 for Win2K ? I have downloaded the ones currently available - A99230-01.zip A99231-01.zip But these are for 9.0.2.0.1 and while installing this on top of 9.2.0.1.0, it gives e

  • My Macbook suddenly won't recognise my external hard drive

    Hi there. I am using an Intenso 2,5" MemoryStation as an external hard drive. I have a few folders with pictures on it and my TimeMachine. When I plug it in it would usually show up on my desktop and start backing up my hard disk automatically. Somet

  • How to delete Services For Objects Attachments?

    How can I delete records from SOFFCONT1 selectively, to recover Database space, without corruption of Database integrity in other tables? Thousands of scanned images have been uploaded to SAP R3 as 'Attachments' to Financial documents, and produced m

  • Digital Video Camera Choices

    I am in the market for a new digital video camera. Can anyone provide advice as to what cameras will work with my iMAC G5? I would like to purchase the Sony DCR-SR100 but it is unclear to me as to whether it will work. Any advice would be greatly app