MW1 does not support Apt-X technology

Currently, MW1 does not support Apt-X technology.
Compare with Samsung HS3000,  MW1 do not support Apt-X technology for better sound quality. (lossless)
I'm looking forward MW1 to support this technology by firmware upgrade.
Thanks.

I'll forward this feedback internally.
 - Official Sony Xperia Support Staff
If you're new to our forums make sure that you have read our Discussion guidelines.
If you want to get in touch with the local support team for your country please visit our contact page.

Similar Messages

  • MOVED: P55 does not support power saving technologies with OC?

    This topic has been moved to Overclockers & Modding Corner.
    https://forum-en.msi.com/index.php?topic=130839.0

    Quote
    I heard that when EIST, C1E is working, then the voltage is lower then 1v on 9x mode.
    Since your OC'ing, Spread Spectrum should be disabled. Your particular CPU (whatever one it is), may require more than 1V. at 9X. The only power saving feature I usually use when OC'd is EIST, with C1E & C-State disabled. See how it does in that configuration. If you don't get any BSOD's or other problems, CPU V. on Auto should be fine.

  • The technology or driver used does not support reverse engineering MySQL

    Hi all,
    I have a little problem.
    When I am trying create a mode in Designerl based on a MySQL Data Store that is created in the Topology manager, I get an exception stating;
    "The technology or driver used does not support reverse engineering
    java.lang.NullPointerException
         at com.sunopsis.dwg.reverse.Reverse.a(Reverse.java)
         at com.sunopsis.dwg.reverse.Reverse.setMetaData(Reverse.java)
         at com.sunopsis.graphical.frame.b.ip.a(ip.java)
         at com.sunopsis.graphical.frame.b.ip.a(ip.java)
         at com.sunopsis.graphical.frame.b.hq.b(hq.java)
         at com.sunopsis.graphical.tools.utils.swingworker.v.call(v.java)
         at edu.emory.mathcs.backport.java.util.concurrent.FutureTask.run(FutureTask.java:176)
         at com.sunopsis.graphical.tools.utils.swingworker.l.run(l.java)
         at edu.emory.mathcs.backport.java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:665)
         at edu.emory.mathcs.backport.java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:690)
         at java.lang.Thread.run(Unknown Source)"
    I can see the table I want to reverse from when going into the the tab "Selective Reverse" but it the reverse fails with the error message above.
    I would really appreciate any help on this topic. I am using MYSQL Server 5.1 and ODI 10.1.3.5.
    Thanks in advance
    Peter

    Hello,
    it seems to be working now. The only change I did was to increase the java heap size, but it feels a bit strange that it should have anything to do with the problem in question.
    Anyway thanks very much for your help.
    Best Regards
    Peter

  • CS4 does not support XP 64....

    I just read this from Curt:
    "Premiere CS4 does not support XP64. It supports XP 32, Vista 32, or Vista 64 on PC"
    Why not? and will it be supported in the future?
    Will it work with Windows OS 7?

    It works with xp64 but it's not supported. Vista 64 is what the program is optimized for. I have Windows 7 64 as test OS and it works perfect so far. Right now if I'm doing an After Effects project I'll do it in Win 7 64 because it is faster. Hands down.
    I know there's a lot of hate for Vista but XP is going the way of Windows 2000. I know some people hate that but technology is what it is. I wouldn't be surprised if there is no support for xp when CS5 comes.
    Actually I kinda wish 32 OS would die off so 64bit will become more widely supported.

  • ITunes Store does not support my country

    I live in Georgia,Tbilisi.iTunes Store does not support my country.Does that mean that I cannot enter my credit card information and I wont be able to buy apps for my iphone 4s?

    Hello,
    Please tell us exactly at what point you receive that message and from where you are downloading the software. The download portal is here:
    http://us.blackberry.com/apps-software/desktop/
    Good luck and let us know!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • ZHT16MSWIN950 does not support accents

    Hi,
    my database was created with this CHARACTER SET = ZHT16MSWIN950 because it is been used in Taiwan and this is the character set that I found for chinese characters. My application uses accents in the sql sentence, for example:
    SELECT DISTINCT "COBROS_ANTICIPADOS"."F_RECEPCION",
    decode(cobros_anticipados.tipo ,'C', 'Cheque', 'P', 'Pagaré', 'J', 'Caja', 'Transferencia' ) as c_tipoc
    FROM "COBROS_ANTICIPADOS"
    when I run my application I get the error ORA-1756 becuase of the accent, If I change the sql sentence and I use
    SELECT DISTINCT "COBROS_ANTICIPADOS"."F_RECEPCION",
    decode(cobros_anticipados.tipo ,'C', 'Cheque', 'P', 'Pagare', 'J', 'Caja', 'Transferencia' ) as c_tipoc
    FROM "COBROS_ANTICIPADOS"
    application does not fail.
    Sorry, I forgot to mention that the database version is 8.1.7.
    I can not change the sql sentence because application is also used in Spain.
    How can I change the character set in my chinese database in order to accept accent and chinese characters? Is there any superset for ZHT16MSWIN950?
    Thanks in advance for your help
    Mabel

    There are two issues here, actually. The first one is that ZHT16MSWIN950 does not support the character 'é'. You should either translate your application, if it is to support Chinese only (Spanish text is of little use on Taiwan, I guess), or switch to UTF8, as suggested by Gunther (AL32UTF8, if you upgrade to some newer version at the same time).
    The second issue is with the client settings for you application (NLS_LANG). You application uses literals in one of the Western European character set (WE8ISO8859P1 or WE8MSWIN1252, probably). This is the character set that must be used in NLS_LANG for the literals to be interpreted correctly. If you set NLS_LANG as expected, the character 'é' will be translated to a question mark in ZHT16MSWIN950 and the query will not fail. The result will be 'Cheque', 'Pagare', 'Caja', or 'Transferencia', because ZHT16MSWIN950 has an explicit replacement character for 'é' equal 'e'.
    Of course, if you set NLS_LANG to WE8..., then the application will not be able to process Chinese characters. Therefore, to have both, Spanish and Chinese, you need to move the database and the client to UTF8. This will require the source code of your application to be converted to UTF8 as well. Note that you will also need a proper support from the operating system to be able to enter Chinese with the NLS_LANG set to .UTF8 The precise solution depends on the technology framework used by the application (client/server?, 3-tier?, Windows?, Unix?, etc)
    -- Sergiusz

  • HT1338 I am trying to download adobe flash player on to my ipad2 i keep getting this massege that safari does not support this ?

    Hi
    anyone there
    I want to down load adobe flash player to my I pad but  a massage show up saying Safari does not support this ?
    Anyone there?

    No Flash for iPads, iPhones, or iPods
    Here's why there's is no Flash available for iDevices or other mobile devices. Adobe was unable to provide a product that was suitable to the needs of battery powered mobile devices used for Internet browsing. Existing Flash technology used too much memory, ate battery life, and was buggy. Simply put Flash did not work well on mobile devices.
    Apple's Steve Jobs led the escape from Flash dependency when Apple introduced the iPhone, and later introduced the iPad. There was a hue and cry over the omission. Time proved Jobs was right on target.
    So this is why there is no Flash for your iPhone or iPad or iPod nor for most SmartPhones. Flash has been abandoned by many sites in favor of supported technologies such as HTML5 or by providing their own custom app.
    Here is Steve Jobs official comment on his momentous decision to omit Flash from iDevices: Steve Jobs on Flash.
    Here is Adobe's later announcement to cease development of Flash for mobile devices: Adobe on Mobile Flash.
    Now, you are not necessarily out on a limb. There are some apps that can display some Flash, but don't count on there ability to display anything using Flash.
    Apps that can display some Flash from the Web:
    Puffin
    SkyFire
    Photon Flash
    Browse2Go
    iSwifter
    Also, note that many sites that use Flash provide their own app for accessing their material. So check with your favorite sites and find out if "there's an app for that."

  • CS5 64 bit does not support TWAIN

    I am running Win 7 64 bit and just upgraded from CS2 to CS5.  CS5 cannot see my scanner (Canon 8400F) even though Canon has a 64 bit driver that I installed.  After downloading and installing the TWAIN plugin I spent several hours trying to figure out why CS5 still could not see my scanner.  Finally I saw where Adobe says it does not support TWAIN in 64 bit because it is an "outdated technology" and that "most manufacturers" do not provide 64 bit drivers for their TWAIN scanners. CANON DOES.
    There does not seem to be any reason why Adobe does not support 64 bit TWAIN except that TWAIN is "outdated."  It still works fine for me (with my CS2), why not with CS5.  It does not seem that I (or we) should have to buy a new scanner just because I (or we) upgraded to CS5.
    Are you listening Adobe????

    I have found a somewhat "second rate" solution to this problem.  If I run CS5 in 32 bit mode my scanner is there.  Now if I could do ythe same thing in 64 bit mode all would be well.

  • Getting error:- Your CPU does not support long mode. Use a 32bit distribution--? on OEL 64 bit host for OEL 64 bitguest

    Getting error:- Your CPU does not support long mode. Use a 32bit distribution--?
    I am using entire Oracle Stack..OEL, ORACLE VBOX
    Trying to install guest OEL 5.6 x86-64 bit on virtualbox 4.3 on a (Dell 2950 Server with host OS OEL 5.6  x86-64 bit) .
    and it complains of -->Your CPU does not support long mode. Use a 32bit distribution
    I am struck and unsure how to proceed . I appreciate any help regarding this.
    I enabled the VT (Virtualization Technology) option in the BIOS and then gave it a try. Does not work?

    Hi
    Looks like the 64 Bit operating system is not supported. Enable the VT (Virtualization Technology) option in the BIOS and then give a try again.
    Edited by: 891882 on Oct 28, 2011 1:21 PM

  • Does iphone support bluetooth MAP technology

    Does iphone support bluetooth MAP technology?
    I bought a 2015 Jeep Grand Cherokee using Uconnect and it won't read my text message out loud.

    iPhone does support the bluetooth MAP profile as long as it is iPhone 4 and later. Refer to article below for further supported profiles.
    iOS: Supported Bluetooth profiles - Apple Support
    The article also states that certain profiles have different responses to different devices and that is determined on both sides (the Jeep software and the iPhone). Depending on the software that Jeep is running it may have limited usability with the iPhone. Best thing to do is first, update the iPhone and see if that helps. If that does not work, remove the Jeep as a device from the Bluetooth Menu in the iPhone and re-add it. Third, get in contact with Jeep or uConnect to see if the iPhone is supported with the MAP profile. If it is, see if they can assist in getting it working correctly. A lot of car dealers will also help in getting it working.

  • Does the later 2009 MacBook support the Apple DVI to Video Adapter (s-video). I want to connect it to an old tv which does not support HDMI. Any suggestions?

    I have a late 2009 MacBook which I want to connect to an old LG tv. The tv does not support HDMI it only has the (red, while, and yellow) ports. Sorry I dunno the exact name for it.
    So I was thinking of using the Apple Mini DVI to Video Adapter (s-video), link below...
    http://store.apple.com/Catalog/dk/Images/M9319_screen.jpg
    But I'm afraid that the MacBook might not support the adapter.
    Can anyone give me a solution for this? Is there an alternative way of doing this? I'm kinda new to apple display adapters.

    The Late 2009 model 6,1 has a Mini DisplayPort not the Mini-DVI. To see which model you have go to the Apple in the upper left corner and select About This Mac, then click on More Info. When the System Profiler comes up check the Model Identifier.
    Composite is the name for the red, white and yellow RCA plugs on your TV or red, white and S-Video plugs. If you want to use the Composite input on your TV there’s no Mini DisplayPort to Composite. You’ll have to get a Mini DisplayPort to VGA adapter http://www.amazon.com/s/ref=nb_sb_ss_i_1_19?url=search-alias%3Delectronics&field -keywords=mini+displayport+to+vga&sprefix=mini+Displayport+to and a VGA Adapter to TV S-Video RCA Out Cable for PC Video. http://www.amazon.com/VGA-Adapter-S-Video-Cable-Video/dp/B000Y7T5UU/ref=sr_1_7?s =electronics&ie=UTF8&qid=1316369974&sr=1-7
    Only the Yellow plug or the S-Video plug for video will work. For sound you'll also need audio cables to the TV using a 3.5mm stereo headphone jack to RCA sound plugs. You attach it from the headphone jack of your MacBook to the appropriate input plugs on your TV  http://www.amazon.com/s/ref=nb_sb_noss?url=search-alias%3Daps&field-keywords=min i-dvi&x=9&y=13#/ref=nb_sb_ss_i_2_19?url=search-alias%3Daps&field-keywords=macboo k+audio+cable&sprefix=macbook+audio+cable&rh=i%3Aaps%2Ck%3Amacbook+audio+cable

  • IE11/Win 8.1 error 'Your client does not support opening this list in windows explorer'

    I hoping someone might be able to help with this frustrating issue.
    I work on a project where we are using various versions of on-line SharePoint (2007/O365).  In order to quickly drag and drop folders we need to often open the document libraries by using the 'open in windows explorer view'.
    Using the same device, on occassion this works.  But often it gives a rather unhelpful message 'Your client does not support opening this list in Windows Explorer'. 
    I've searched for this issue over the net and confirm that the sites are added to the 'trusted' sites area and that the 'remember you credientials' is checked on logging in.However, the searches do not seem to apply to IE11/Win8.1 or on-line version of sharepoint
    (the suggested hot fix is not suitable)
    Only this morning, using the same device I was able, for a short while to open in explorer view, and then for no apparent reason, it began to display the error message.  I had changed nothing regarding settings or even closed the browser.
    Do you have any support/ideas/fixes on how to resolve this.
    Many thanks
    val

    Hi Val,
    sometimes an answer can be found on the internet by typing the error message from your computer into your favourite search engine.
    eg.
    http://www.bing.com/search?q=your+client+does+not+support+opening+this+list+in+windows+explorer&form=IE10TR&src=IE10TR&pc=HPNTDFJS
    see
    http://blogs.technet.com/b/asiasupp/archive/2011/06/13/error-message-quot-your-client-does-not-support-opening-this-list-with-windows-explorer-quot-when-you-try-to-quot-open-with-explorer-quot-on-a-sharepoint-document-library-in-office-365-site.aspx
    follow the directions given above.... you need to add the domains to your Intranet sites list, not the Trusted sites list.
    Perhaps you already have it mapped to your intranet zone....in which case make sure that you have unchecked "Enable Enhance Protected Mode" on the Intranet  zone dialog in Internet Options.
    If this is happening 'randomly' on client machines, then users are probably changing their internet security settings in Internet Options. Ensure they are accepting the default.... Internet Options>Security tab, click "Reset all zones to default".
    Consult with your system administrators to find out if they are applying a custom security template for the Intranet zone... It may be removing the sharepoint domains from the client Intranet zone's domains lists.
    HTH.
    Rob^_^

  • AS I  FOUND OUT LATE, LION DOES NOT SUPPORT ROSETTA, WHICH SUPPORTS QUICKEN AND CLASSIC AOL, AND MANY OTHER APPS. CAN I TAKE LION AWAY AND GO BACK TO SNOW LEOPARD?

    I found out after the install of LION, that it does not support Rosetta, which runs Quicken and the classic AOL software and a myriad of other apps.
    Can I go back to Snow Leopard? Is there a way to retrieve my thousands of saved E mails, which are saved on my Mac?
    I still see the filing cabinet with my screen name but cannot get them to open.
    Please help! Lion may roar, but the fact it does not support apps like quicken means it purrs.

    I had the Apple store wiped out my hard drive and I restore my last hard drive downloard by first placing Snow leopard DVD in the DVD drive and holding "C" when turning on the machine then I follow the instructions. I am back on snow leopard and trying out two finance software to replace Quicken for mac 2007. I am trialing Quicken essentials and ibank. They are both compatable with LION. So when I am ready will download Lion again. Also, Micorsoft Office needs to be 2011 version for it to work on Lion

  • I am told that my browser does not support iframes when trying to access a web site.

    This is Google's cache of http://sitetrail.com/askearth.com. It is a snapshot of the page as it appeared on Sep 19, 2010 10:44:02 GMT. The current page could have changed in the meantime. Learn more
    Full version These search terms are highlighted: history askearth com
    * Contact Us
    SiteTrail - Website News and Analysis
    * Business
    * Dev & Design
    * Entertainment
    * Mobile
    * Social Media
    * Tech
    Search in SiteTrail askearth.com (visit site) This data was last updated 6 months ago (update data).
    Site Profile Estimated Value: $5,582.16 USD Estimated Revenue: $7.60 USD per day $227.90 USD per month $2,772.81 USD per year Estimated Pageviews: 3,355 per day 100,648 per month 1,224,551 per year Alexa Rank: #447,581 Google Index: show google links Yahoo Index: show yahoo links Bing Index: show bing links History: show history Site Title: Interesting Questions - AskEarth Site Traffic
    Site Server Server IP Address: 140.174.79.37 Server IP Decimal: -1934733531 Server IP Location: Pordenone, Friuli-Venezia Giulia, Italy
    Your browser does not support iframes. Whois Information Welcome to the Network Solutions(R) Registrar WHOIS Server.
    The IP address from which you have visited the Network Solutions Registrar WHOIS database is contained within a list of IP addresses that may have failed to abide by Network Solutions' WHOIS policy. Failure to abide by this policy can adversely impact our systems and servers, preventing the processing of other WHOIS requests.
    To see the Network Solutions WHOIS Policy, click on or copy and paste the following URL into your browser:
    http://www.networksolutions.com/whois/index.jhtml
    If you feel that you have received this message in error, please email us using the online form at http://www.networksolutions.com/help/email.jsp with the following information:
    Whois Query: askearth.com YOUR IP address is 174.129.155.56 Date and Time of Query: Tue Feb 23 00:49:37 EST 2010 Reason Code: IE DNS Records Host Class Type IP TTL Target Other askearth.com IN A 140.174.79.37 7199 askearth.com IN NS 7200 ns53.worldnic.com askearth.com IN NS 7200 ns54.worldnic.com askearth.com IN SOA 7200 mname: NS53.WORLDNIC.com rname: namehost.WORLDNIC.com serial: 108121504 refresh: 10800 retry: 3600 expire: 604800 minimum-ttl: 3600 HTTP Headers HTTP/1.1 302 Found Date: Tue, 23 Feb 2010 05:59:34 GMT Server: Apache/2.2.11 (Unix) mod_fastcgi/2.4.2 PHP/4.4.9 with Suhosin-Patch mod_ssl/2.2.11 OpenSSL/0.9.7m mod_apreq2-20051231/2.6.0 mod_perl/2.0.3 Perl/v5.8.7 Location: http://askearth.com/go/home Content-Length: 417 Connection: close Content-Type: text/html; charset=iso-8859-1
    HTTP/1.1 200 OK Date: Tue, 23 Feb 2010 05:59:35 GMT Server: Apache/2.2.11 (Unix) mod_fastcgi/2.4.2 PHP/4.4.9 with Suhosin-Patch mod_ssl/2.2.11 OpenSSL/0.9.7m mod_apreq2-20051231/2.6.0 mod_perl/2.0.3 Perl/v5.8.7 Set-Cookie: id=11010246; EXPIRES=Sun, 01-Apr-29 00:00:00 GMT; PATH=/ Set-Cookie: pass=u0zit0yv; EXPIRES=Sun, 01-Apr-29 00:00:00 GMT; PATH=/ Set-Cookie: since=1266904775; PATH=/ Connection: close Content-Type: text/html Firefox Add-on SiteTrail Firefox Add-onPerform SiteTrail lookups via right-click menu straight from your web browser! Popular Lookups
    * google.com#1
    * facebook.com#2
    * youtube.com#3
    * yahoo.com#4
    * live.com#5
    * baidu.com#6
    * wikipedia.org#7
    * blogspot.com#8
    * msn.com#9
    Browse Lookups
    A B C D E F G H I
    J K L M N O P Q R S T U V W X Y Z Recent Lookups
    * askearth.com#447,581
    * evdenevenakliyatv.com#442,990
    * mytaskhelper.com#756,476
    * fikralari.net#639,299
    * typemytape.com#1,547,530
    * tmmod.info#1,078,434
    * torrentplus.org#233,938
    * communitycollegelistin...#430,008
    * cadbury.co.uk#104,852
    * myhobbyblogs.com#297,443
    Random Lookups
    * solidmastermind.com#931,183
    * homelegance.com#277,584
    * homepage-anleitung.de#1,091,134
    * icicigroupcompanies.co...#1,513,887
    * ptiboo.ch#744,058
    * fachportal-paedagogik....#312,102
    * lcpo.com#336,926
    * spitinet.gr#904,561
    * sportingpulse.com#37,069
    * v-pillsbuyutucuhap.com#543,342
    * sameskyboard.com#51,252
    * alparslanpazarlama.com...#1,444,281
    * ventausa.com#221,470
    * dentalmag.org#234,937
    * digitalfoci.com#1,214,872
    * blank-label.com#273,247
    * efun.ir#446,350
    * greatamericandays.com#579,258
    * it007.com#58,123
    * hairyclipz.com#760,892
    Navigation
    * Contact Us
    Categories
    * Business
    * Dev & Design
    * Entertainment
    * Mobile
    * Social Media
    * Tech
    Recent News
    * VP of Twitter Says Twitter is NOT A Social Network
    * Google Puts White Spaces To Use
    * YouTube Instant Experiment Gives Creator a Job At YouTube
    * YouTube Time Machine – A New Website To Waste Hours On
    * Google’s New Instant Search – Saving 11 Hours Every Second
    * Facebook Notes Gets New Tools
    Recent Lookups
    * askearth.com#447,581
    * evdennakliyateve.com#442,990
    * mytaskhelper.com#756,476
    * maximumwoman.com#639,299
    * typemytape.com#1,547,530
    * tmmod.info#1,078,434
    © 2010 SiteTrail. All Rights Reserved.

    I'm not clear on where you are seeing that text. When I view Google's cached page from the page found in this search
    https://www.google.com/search?q=site%3Asitetrail.com%2Faskearth.com
    It doesn't match yours exactly. There is an iframe with a Google map in it in the "Hosting Analysis" section, which in your pasted page seems to be the "Site Server" section.
    Which Google site did you search?

  • Adobe Creative Cloud does not support Bootcamp by Apple IOS operating system, but does work with boot camp Win 8.1 why"

    Adobe Creative Cloud does not support APPLE latest IOS operating system, but does allow Windows 8.1 to be accepted. This seems a shame to me, as
    Apple IOS is the leader in graphics, photography. The advertising states it is usable under both APPLE IOS and Microsoft 8.1 windows operating systems. Adobe Support Chat Sooraj tells me on 02/19/2015 that i must buy two computers to have it operate on both operating systems. Adobe will not support apple's Boot CAMP allowing both operating systems.
    i love the apple product and love the ADOBE Photoshop CC, but it simply does now work with an apple keyboard and a WiN operating system. .[email protected]  Adobe Creative Cloud

    In Thehatters defence, this was initially posted in the MacbookPro forum and then moved to Boot Camp,
    If you have any joy solving your trackpad device driver issue, feel free to post here (there might be a similar fix for my  wireless adapter device)
    Thanks

Maybe you are looking for

  • Gui_download control_flush_error CRM Action

    Hi , WE have created an action to generated document. In  this we are using Gui_download function module. When we trigger the action from SAP Gui it is working fine.But when we trigger the same from Portal this throwing an Exception Control_flush_err

  • ON MAC OS, Adobe Reader unable to search a document for words

    Hi, I am using Adobe Reader on a Mac Os platform.  All my software is up to date, including OS and Adobe Reader. My issue is that when I try searching a particular document for a word, it may return one result, if any, although there are clearly more

  • Java.lang.NullPointerException : Where is the bug ?!

    Hi, where is the bug in this method ? I just do not see it ! When I run it I get the following error message Exception in thread "main" java.lang.NullPointerException at edu.clip.rerank.main.packageRec(main.java:239) and line 239 is the one I have in

  • My ipod is disabled and the dial pad isn't coming back up. What should i do?

    My ipod is disabled so it told me to hook it up to itunes, so i did butthen itunes told me that it can read the ipod til i putthe code in and i cant do that because the dial pad is not showing up. What should i do?

  • Error When Running Maintenance Script

    When I try to execute the Maintenance Task script that was generated by AWM, I get the following error: Successoracle.AWXML.AWException: Action BUILDDATABASE failed on object SCHEMA.AW_NAMEThe weird thing here is that there is no actual ORA error, an