Unable to access objects in my own schema -- imported from SQL Server

Hi All,
I have imported some tables from MS SQL SERVER 2005 to Oracle 9i (9.2.0.1.0) on Windows machine.
When I fire the query like "SELECT * FROM TAB", I can see the list of all those tables that I have imported, but the problem is that if I try to fetch the data from a specific table, the error is shown as "TABLE OR VIEW DOES NOT EXISTS".
Can you please suggest me some work around to get the data from the tables?
Thanks in advance
Himanshu

Replied in your Re: Unable to access objects in my own schema -- imported from SQL Server.
Yoann.

Similar Messages

  • Unknown SQL Exception 208 occurred. Additional error information from SQL Server is included below.Invalid object name 'Webs'.

    SP 2013 Server + Dec 2013 CU. Upgrading from SharePoint 2010.
    We have a web application that is distributed over 7-8 content databases from SharePoint 2010. All but one database are upgradable. However, one database gives:
    Invalid object name 'Webs'.
    while running Test-SPContentDatabase or Mount-SPContentDatabase.
    EventViewer has the following reporting 5586 event Id:
    Unknown SQL Exception 208 occurred. Additional error information from SQL Server is included below.Invalid object name 'Webs'.
    After searching a bit, these links do not help:
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/fd020a41-51e6-4a89-9d16-38bff9201241/invalid-object-name-webs?forum=sharepointadmin
    we are trying PowerShell only.
    http://blog.thefullcircle.com/2013/06/mount-spcontentdatabase-and-test-spcontentdatabase-fail-with-either-invalid-object-name-sites-or-webs/
    In our case, these are content databases. This is validated from Central Admin.
    http://sharepointjotter.blogspot.com/2012/08/sharepoint-2010-exception-invalid.html
    Our's is SharePoint 2013
    http://zimmergren.net/technical/findbestcontentdatabaseforsitecreation-problem-after-upgrading-to-sharepoint-2013-solution
    Does not seem like the same exact problem.
    Any additional input?
    Thanks, Soumya | MCITP, SharePoint 2010

    Hi,
    “All but one database are upgradable. However, one database gives:
    Invalid object name 'Webs'.”
    Did the sentence you mean only one database not upgrade to SharePoint 2013 and given the error?
    One or more of the following might be the cause:
    Insufficient SQL Server database permissions
    SQL Server database is full
    Incorrect MDAC version
    SQL Server database not found
    Incorrect version of SQL Server
    SQL Server collation is not supported
    Database is read-only
    To resolve the issue, you can refer to the following article which contains the causes and resolutions.
    http://technet.microsoft.com/en-us/library/ee513056(v=office.14).aspx
    Thanks,
    Jason
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Jason Guo
    TechNet Community Support

  • Unable to open the physical file "D:\Program Files\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQL\DATA\abc.mdf". Operating system error 2: "2(The system cannot find the file specified.)".

    hi,
    am running the below command for moving sql serevr mdf and ldf files  from one  drive to another : c  drive to d drive:
    but am getting the below error
    SQL Server\MSSQL11.MSSQLSERVER\MSSQL\DATA\abc.mdf". Operating system error 2: "2(The system cannot find the file specified.)".
    use master
    DECLARE @DBName nvarchar(50)
    SET @DBName = 'CMP_143'
    DECLARE @RC int
    EXEC @RC = sp_detach_db @DBName
    DECLARE @NewPath nvarchar(1000)
    --SET @NewPath = 'E:\Data\Microsoft SQL Server\Data\';
    SET @NewPath = 'D:\Program Files\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQL\DATA\';
    DECLARE @OldPath nvarchar(1000)
    SET @OldPath = 'C:\Program Files\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQL\';
    DECLARE @DBFileName nvarchar(100)
    SET @DBFileName = @DBName + '.mdf';
    DECLARE @LogFileName nvarchar(100)
    SET @LogFileName = @DBName + '_log.ldf';
    DECLARE @SRCData nvarchar(1000)
    SET @SRCData = @OldPath + @DBFileName;
    DECLARE @SRCLog nvarchar(1000)
    SET @SRCLog = @OldPath + @LogFileName;
    DECLARE @DESTData nvarchar(1000)
    SET @DESTData = @NewPath + @DBFileName;
    DECLARE @DESTLog nvarchar(1000)
    SET @DESTLog = @NewPath + @LogFileName;
    DECLARE @FILEPATH nvarchar(1000);
    DECLARE @LOGPATH nvarchar(1000);
    SET @FILEPATH = N'xcopy /Y "' + @SRCData + N'" "' + @NewPath + '"';
    SET @LOGPATH = N'xcopy /Y "' + @SRCLog + N'" "' + @NewPath + '"';
    exec xp_cmdshell @FILEPATH;
    exec xp_cmdshell @LOGPATH;
    EXEC @RC = sp_attach_db @DBName, @DESTData, @DESTLog
    go
    can anyone pls help how to set the db offline. currently  i  stopped the sql server services from services.msc and started the  sql server agent.
    should i stop both services for moving from one drive to another?
    note: I tried teh below solution but this didint work:
    ALTER DATABASE <DBName> SET OFFLINE WITH ROLLBACK IMMEDIATE
    Update:
    now am getting the message :
    Msg 15010, Level 16, State 1, Procedure sp_detach_db, Line 40
    The database 'CMP_143' does not exist. Supply a valid database name. To see available databases, use sys.databases.
    (3 row(s) affected)
    (3 row(s) affected)
    Msg 5120, Level 16, State 101, Line 1
    Unable to open the physical file "D:\Program Files\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQL\DATA\CMP_143.mdf". Operating system error 2: "2(The system cannot find the file specified.)".

    First you should have checked the database mdf/ldf name and location by using the command
    Use CMP_143
    Go
    Sp_helpfile
    Looks like your database CMP_143 was successfully detached but mdf/ldf location or name was different that is why it did not get copied to target location.
    Database is already detached that’s why db offline failed
    Msg 15010, Level 16, State 1, Procedure sp_detach_db, Line 40
    The database 'CMP_143' does not exist. Supply a valid database name. To see available databases, use sys.databases.
    EXEC @RC = sp_attach_db @DBName, @DESTData, @DESTLog
    Attached step is failing as there is no mdf file
    Msg 5120, Level 16, State 101, Line 1
    Unable to open the physical file "D:\Program Files\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQL\DATA\CMP_143.mdf". Operating system error 2: "2(The system cannot find the file specified.)"
    Solution:
    Search for the physical files(mdf/ldf) in the OS and copy to target location and the re-run sp_attach_db with right location and name of mdf/ldf.

  • How to access Oracle 8g from SQL Server 2005 SP3 EE 64 Bits ?

    Dear All,
    How to access Oralce 8g from SQL Server 2005 SP3 EE 64 Bits (liked server).
    Best regards,
    Miguel Gavinhos

    Hi!
    For the Oracle version is 8.1.6. what should I install, to access Oracle trought a linked server.
    Best regards
    Miguel Gavinhos

  • Unable to access objects under the schema after refresh

    Hi,
    I refreshed one of my schema (XXX) from a Production to QA.
    I checked and found that all the objects have been refreshed correctly.
    But when I try to query the object from the schema, I get the error. ORA-00942: table or view does not exists.
    When I query it using, XXX.table_name -> I get the desired output.
    What am I missing here? Some privileges? Could someone please help me on this?
    Thanks!

    user9104898 wrote:
    Hi,
    I refreshed one of my schema (XXX) from a Production to QA.
    I checked and found that all the objects have been refreshed correctly.
    But when I try to query the object from the schema, I get the error. ORA-00942: table or view does not exists.
    When I query it using, XXX.table_name -> I get the desired output.
    What am I missing here? Some privileges? Could someone please help me on this?
    Thanks!Hi.How you refresh your "XXX" schema from according production schema?,drop and create objects again?.If yes then that is possible because all privileges(in this case object) which related these objects was lost, therefore you get an error as "ORA-00942: table or view does not exists".You have to give grant(select or other) again related these objects to desired users.

  • Unable to access end point while invoking web service from bpel

    We are trying to Consume Web Service in our SOA Application and we are getting the following error:-
    "java.lang.Exception: oracle.sysman.emSDK.webservices.wsdlapi.SoapTestException: oracle.fabric.common.FabricInvocationException: Unable to access the following endpoint(s): http://xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx/yyyyyyy.svc ".
    Scenario*:-
    1.The Web Service that we are trying to consume is built on Microsoft Dynamics AX Framework and is using Windows Authentication and we are using Oracle Soa Suite 11g(11.1.1.5) to access it.
    2.The Web Serice is Hosted on IIS server 7.0 . The Soa server and IIS server both are on the same domain(Also need to confirm that is there any need to pass credentials while consuming Web Services when both the servers are on same domain??).
    3.We have tested the Web Service in SOAP UI and is working fine only when we pass the Username,Password and Domain.And if we do not pass the User Credentials then we get the following error:-
    " 401 - Unauthorized: Access is denied due to invalid credentials.
    You do not have permission to view this directory or page using the credentials that you supplied."
    4.We can even access the WSDL from the browser.
    Plz help me out to resolve this issue.Will be really greatfull
    Edited by: 937798 on May 31, 2012 2:36 AM

    910764
    1:- I have not begged or requested for marking all answers as helpful. If answers are helpful then post author can do that.
    2:- I also follow same practice. I dont blindly mark all answers correct or helpful. It can waste other's time. Correct marking is very important. Hence my all question are not having close end.Few are still open for correct answers. I will happily mark them correct if you can help me in that.
    In the end , I will say Kindly refrain yourself using this platform as facebook or other social networking websites.
    I hope you will understand seriousness of this forum and utilize its member's posts at the most.
    Thanks,
    Ashu

  • WRT54GL unable to access wired shares or printer on PC from wireless iMac

    The subject line applies to a new router on which I can access the internet ok both from the wired PC and the wireless iMac.
    The problem is this router is unable to access the PC shares or printer from the iMac. Pls note, "this router"!
    I have an identical WRT54GL v1.1, same firmware, setup is identical on both, one works with no problem, but the new one has the above problem..
    I have spent a day on it and its in line for return on Monday, but I still hope for a miracle tip which may sort it out :-)
    On the good one 'Port scan' of the PC from iMac gives me:
    Port Scan has started ...
    Port Scanning host: 192.168.1.100
    Open TCP Port: 139
    Open TCP Port: 445
    while the faulty one gives me:
    Port Scan has started ...
    Port Scanning host: 192.168.1.100
    ..and thats it! No contact.
    Yes, the router is set up for 'Lan & Wireless' (no way to change that setting to 'WAN only' it seems, it bounces back to 'Lan & Wireless')
    I have btw done a Factory Reset on it (twice) with no joy.
    Any ideas anyone?
    Mvh

    My first guess for this kind of problem would be a software firewall on the computer. The firewall will detect where it is connected and configures the settings depending on the location. Two routers are two different "locations". Try turning off the firewall or even better deinstall it as often some parts of those software firewalls are still active when turned off.
    The only option that does affect access of wireless clients to the LAN is the "AP Isolation" option on the "Advanced Wireless Settings". That should be off.
    Another thing you could try if you like: do a configuration backup on the working router and restore it to the faulty one. Maybe there are some settings that don't match and that you cannot configure through the web interface. Have you ever used a 3rd party firmware on either of the routers?

  • Unable to connect BO XI3.1 SP3 on linux to sql server 2008

    I am looking for some assistance with trying to connect to sql server 2008 db. We have BO XI 3.1 SP3 installed in linux environment. Was able to set up oracle and db2 variable to connect to oracle and db2 universes, after loading the db2 client and oracle 32b client. trying to connect to sql server 2008, but getting error Unable to Bind Configuration Object -(WIS 10901). Thank You.

    Hi Ravi,
    Depending on the version you may find useful some KB articles:
    [1463263 - Error: Unable to bind to Configuration object (WIS 10901) - SQL driver for UNIX server |https://service.sap.com/sap/support/notes/1463263]   (XI3.1)
    [1607125 - How to configure SQL Server connectivity for WebIntelligence from a BI4.0 unix environment? |https://service.sap.com/sap/support/notes/1607125]   (BI4.0)
    [1607125 - How to configure SQL Server connectivity for WebIntelligence from a BI4.0 unix environment? |https://service.sap.com/sap/support/notes/1607125]  (BI4.0)
    If this doesn't help can you please specify version and patch level, as well as the exact error message you get.
    Thanks and regards
    Simone

  • Accessing v 7 dbase from sql server 2005 enterprise edition

    Hi, i would appreciate any help with this issue i have come across when trying to access a version 7 dbase from within sql server 2005.
    The error message is telling me that "This version of SQL server man studio can only be used to connect to SQL Server 2000 and SQL servers 2005"
    I am new with SQL server so ill explain how im accessing it. I am connecting a server with sql 2005 on it via net support then through this trying to access another server with v 7 on it.
    Thanks for the help in advance.

    I see little purpose in resurrecting or "cleaning out" these threads.  I cannot see that asking the OP if the problem still persists after 6 years has any useful purpose - and someone follows along shortly afterwards (since the thread has now risen
    to the front of the forum) with a post that he then marks as an answer.  It looks like there are over 900 threads in this forum alone that are unanswered - and I'll guess that this forum has significantly less volume than some of the others (9100 in tsql).
     If MS wants to apply manpower to that, so be it.  But immediately following a "is this still a problem" post with  a suggestion/mark as answer does not seem to do much beyond generate volume.  At a minimum it is inappropriate for someone
    to propose one's own post as an answer regardless of their official forum position.  
    And if we follow this cleanup logic, what is accomplished if the OP never responds?  Odds are that there will be none, so why bother? Alternatively, just actually mark the thread as answered with some sort of "cleanup, no response from OP" post.  The
    end result is the same. 
    Well, no one cared enough to answer his question 5 years ago. I want to change that. My time machine is broken right now, but I can still check to see if people still care about their issues. Because I care. Even if it's old. We should all care.
    I understand that not everyone sees the value of asking about a 5-year old question. But what exactly does it hurt? How does showing I care about the person become a problem? We made you read it? Is that the problem?
    Ed Price, Power BI & SQL Server Customer Program Manager (Blog,
    Small Basic,
    Wiki Ninjas,
    Wiki)
    Answer an interesting question?
    Create a wiki article about it!

  • Trying to serialize C# object and store as XML Datatype in Sql Server 2005

    using
    if (Obj != null)
                   MemoryStream stream = new MemoryStream();
                   StreamWriter writer = new StreamWriter(stream);
                   XmlSerializer x = new XmlSerializer(Obj.GetType());
                   x.Serialize(writer, Obj);
                   writer.Close();
                   byte[] arr = stream.GetBuffer();
                   return Encoding.UTF8.GetString(arr).Trim();
    The object looks like
        public class CorporateBondSec : BaseSecurity
            public double coupon; // CPN
            public string couponType; // CPN_TYPE
            public int couponFreq; // CPN_FREQ
            public string floater; // FLOATER
            public int resetFreq; //REFIX_FREQ
            public DateTime resetDate; //NXT_REFIX_DT              
            public DateTime firstCpnDate; //FIRST_CPN_DT
    XML looks like
    '<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<CorporateBondSec xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\">\r\n  <coupon>8</coupon>\r\n  <couponType>FIXED</couponType>\r\n  <couponFreq>2</couponFreq>\r\n  <floater>N</floater>\r\n  <resetFreq>0</resetFreq>\r\n  <resetDate>0001-01-01T00:00:00</resetDate>\r\n  <firstCpnDate>0001-01-01T00:00:00</firstCpnDate>\r\n</CorporateBondSec>'
    Error from SQL
    Msg 9413, Level 16, State 1, Procedure procSecuritiesInsert, Line 0
    XML parsing: line 1, character 15, A string literal was expected
    I have also tried
    XmlSerializer x = new XmlSerializer(Obj.GetType());
    System.Text.StringBuilder builder = new System.Text.StringBuilder();
    x.Serialize(XmlWriter.Create(builder), Obj);
    return builder.ToString();
    That gives me an XML
    '<?xml version=\"1.0\" encoding=\"utf-16\"?>
    <CorporateBondSec xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\">
    <coupon>8</coupon>
    <couponType>FIXED</couponType>
    <couponFreq>2</couponFreq>
    <floater>N</floater>
    <resetFreq>0</resetFreq>
    <resetDate>0001-01-01T00:00:00</resetDate>
    <firstCpnDate>0001-01-01T00:00:00</firstCpnDate>
    </CorporateBondSec>'
    Error
    Msg 9413, Level 16, State 1, Procedure procSecuritiesInsert, Line 0
    XML parsing: line 1, character 15, A string literal was expected

    Tony,
    this is how your XML should look like.
    Code Snippet
    '<?xml version="1.0" encoding="utf-16"?>
    <CorporateBondSec xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <coupon>8</coupon>
    <couponType>FIXED</couponType>
    <couponFreq>2</couponFreq>
    <floater>N</floater>
    <resetFreq>0</resetFreq>
    <resetDate>0001-01-01T00:00:00</resetDate>
    <firstCpnDate>0001-01-01T00:00:00</firstCpnDate>
    </CorporateBondSec>'
    I see you have a few extra '\' characters before double quotes. you need to remove them.

  • Unable To Select From SQL Server table with more than 42 columns

    I have set up a link between a Microsoft SQL Server 2003 database and an Oracle 9i database using Heterogeneous Services (HSODBC). It's working well with most of the schema I'm selecting from except for 3 tables. I don't know why. The common denominator between all the tables is that they all have at least 42 columns each, two have 42 columns, one has 56, and the other one, 66. Two of the tables are empty, one has almost 100k records, one has has 170k records. So I don't think the size of the table matters.
    Is there a limitation on the number of table columns you can select from through a dblink? Even the following statement errors out:
    select 1
    from "Table_With_42_Cols"@sqlserver_db
    The error message I get is:
    ORA-28500: connection from ORACLE to a non-Oracle system returned this message [Generic Connectivity Using ODBC]
    ORA-02063: preceding 2 lines from sqlserver_db
    Any assistance would be greatly appreciated. Thanks!

    Not a very efficient and space friendly design to do name-value pairs like that.
    Other methods to consider is splitting those 1500 parameters up into groupings of similar parameters, and then have a table per group.
    Another option would be to use "vertical table partitioning" (as oppose to the more standard horizontal partitionining provided by the Oracle partition option) - this can be achieved (kind of) in Oracle using clusters.
    Sooner or later this name-value design is going to bite you hard. It has 1500 rows where there should be only 1 row. It is not scalable.. and as you're discovering, it is unnatural to use. I would rather change that table and design sooner than later.

  • Trying to install features for PowerPivot and Reporting Services from SQL Server 2012 with SP2, but no access to key?

    Hi,
    I had installed SQL Server 2012 PowerPivot on WFE and App Server. This is test farm with 1 WFE and 1 APP and 1 SQL Server.
    However, we had a heap of issues with Windows Claims Authentication and PowerPivot - issues were raised with "unable to make a connection to EntityDataSource" . Now we uninstalled the PowerPivot and Reporting Services features and wanted to install
    with the SQL Server 2012 with SP2. Originally SP2 was installed seperately and we had read there had been issues.
    Anyway on trying to install the features again using the SQL Server 2012 with SP2 iso I get 
    Could not open key UNKNOWN\Components
    I don't want to start deleting or changing permissions as quite dodgey. What is this key for anyway and how do I resolve my issue.
    Thanks.
    John.

    Hi John,
    Did you meet the error message during the process of configuring the PowerPivot for SharePoint?
    If yes, I suppose that the existing features or components have not been uninstalled completely.
    I recommend to delete the two keys left when uninstalling the PowerPivot and please make a copy of the registry keys before you delete the two keys:
    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Shared Tools\Web Server Extensions\15.0\WSS\ServiceProxies\Microsoft.AnalysisServices.Sharepoint.Integration.MidTierServiceProxy
    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Shared Tools\Web Server Extensions\15.0\WSS\ServiceProxies\Microsoft.AnalysisServices.Sharepoint.Integration.MidTierServicea
    Please check the steps in the link below to see if there anything wrong when you uninstalling the PowerPivot and then re-install it to see how it works:
    https://technet.microsoft.com/en-us/library/ff487866(v=sql.110).aspx
    Thanks,
    Victoria
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Victoria Xia
    TechNet Community Support

  • How to access the MDX application from SQL server when working with OBIEE?

    Hi,
    I am new to MS SQL Server 2005. We have developed the OLAP Cubes on SQL Server Business Intelligence Development Studio with its integration with Oracle Business Intelligence Enterprise Edition (OBIEE).
    The backend query is in MDX language. Now if I need to run that query I need to access the MDX Application, rite?
    So need to know how to connect to MDX application.
    Regards,

    Administration Tool: File - Import - "from multidimensional". There you choose "Provider Type" = "Analysis Server 2005". You specify the URL, user name and password. Then you can import MSAS cubes just like Essbase ones.
    Cheers

  • ITunes has stopped accessing Gracenotes when I try to import from CD's

    My iTunes library has stopped accessing Gracenotes when importing CD's. Now I either have to manually input all the info or rip it using Windows Media Player and import from a folder which takes ages when you've got loads of new CD's.
    I've checked preferences and everything seems to be checked that needs to be so I'm not sure why it seems to have stopped.
    Is anyone else experiencing this problem and does anyone know if there's a fix for it?

    Not sure what you've seen/tried so far, so I'll run you through my standard advice as of this morning, Marty.
    There's a bug with 10.1.0.54, Amanda, that is causing "iTunes has stopped working messages" (citing CoreAudioToolbox.dll in the Problem Reports for the error) for some folks when importing CDs with the AAC encoding, adding/converting files to AAC, and in some cases syncing devices (when the convert to 128 kbps AAC option is enabled).
    Short of rolling back your iTunes to 10.0.1.22 and your Apple Application Support to 1.3.2 (CoreAudioToolbox.dll is kept in the Apple Application Support program files), there's a few possible workarounds.
    (1) Change your importing prefs to use a different encoding (won't help with the device syncing variation though), and/or disable the convert to 128 kbps AAC when syncing option.
    (2) Replace your CoreAudioToolbox.dll version 7.9.4.0 with a 7.9.3.0 as per:
    http://discussions.apple.com/thread.jspa?messageID=12576816#12576816
    (3) Or, replace your CoreAudioToolbox.dll version 7.9.4.0 with a shadow copy of a 7.9.3.0 as per:
    http://discussions.apple.com/thread.jspa?messageID=12583499&#12583499
    (3 and 4 do help with the device-syncing variation.)

  • How to access the MDX application from SQL server?

    Hi,
    I am new to MS SQL Server 2005. We have developed the OLAP Cubes on SQL Server Business Intelligence Development Studio with its integration with Oracle Business Intelligence Enterprise Edition (OBIEE).
    The backend query is in MDX language. Now if I need to run that query I need to access the MDX Application, rite?
    So need to know how to connect to MDX application.
    Regards,

    I think that you have posted this query to the wrong forum. Try this one:
    Business Intelligence Suite Enterprise Edition
    --Andy                                                                                                                                                                                                                                                                                           

Maybe you are looking for

  • HT204053 can you have 2 apple ids under one account

    Our family has several apple devices.  Our phones and computers use icloud to coordinate calendars.  However we do not want to receive each others imessages and such.  With several iphones on imessage and icloud and under the same id this has recentl

  • Error in Creating a Supplier in R12

    Hi All, I am getting the following error when trying to create a supplier. "You cannot assign the SUPPLIER party usage because the calling application is not a seeded value". Thanks, Saritha

  • Copy/paste does not work on my DROID ULTRA

    It is so aggravating when I copy text and go to the message center or text someone and what I copied does paste. What pastes is what I had in the memory before I copied what I want to paste. It is so frustrating

  • Why won't my MacBook read CDs?

    Yeah. I bought a couple of CD's and I wanted to import the music into my iTunes library. So, I put a CD in and it didn't make the normal CD spinning sound and my Macbook spat out the CD. At first I thought it was a problem with the CD. Then I tried a

  • Setting the usesGetMethod in PortletDescription

    Hi! I'm trying out WSRP with the following setup: Box 1: WLPortal 10.2 hosting a JSF-portlet acting as a WSRP producer. Box 2: JBoss portal 2.7, WSRP consumer of the JSF-portlet on Box 1. My problem is that JBoss refuses dealing with producers that h