Database SQL SAP B1

Good morning,
Anyone know what query is used to display only the databases of SAP B1 without showing the others that are in SQL Server?
Thank's

Hi Andres,
When you click on the Refresh button in the Choose Company screen in SBO, the system runs a check against all databases on the SQL Server and looks for a CINF table in each database. If CINF exists then SBO assumes the database is a SBO database. The queries suggested above should work fine most of the time but if you want to perform the same check that SBO uses then the following will work:
create table #Databases(idx int identity(1, 1), DbName nvarchar(100), compName nvarchar(100) null)
declare @Count int
declare @Total int
declare @DbName nvarchar(100)
set nocount on
insert into #Databases
     select name, null from master..sysdatabases  where has_dbaccess(name) = 1
set @Total = @@ROWCOUNT
set @Count = 1
while @Count <= @Total
     begin
          select @DbName = DBName from #Databases where idx = @Count
               declare @sql nvarchar(400)
               set @sql = 'if exists(select name from ' + + QUOTENAME(@DbName) + '..sysobjects where name = ''CINF'' and xtype = ''U'')
                              update #Databases set compName = (select CompnyName from ' + + QUOTENAME(@DbName) + '..CINF) where idx = ' + cast(@Count as nvarchar)
               exec(@sql)
          set @Count = @Count + 1
     end
set nocount off
select DbName, compName from #Databases where compName is not null
drop table #Databases
Kind Regards,
Owen

Similar Messages

  • Converting SQL server database into SAP readable XML??

    Could anyone kindly let me know what is the procedure to convert SQL server database into SAP readable (encrypted) XML for SAP Authoring tool???

    Sorry you will need to be more specific, what is it exactly you want to do? What authoring tool do you mean.
    A bit more info and someone might be able to help you.
    BRgds,
    Simon

  • Size of SQL Server 2005 Database for SAP B1 2005 B is heavy

    Hi all,
    In my company we are working with SAP B1 2005 B SP 25.
    Our Database is in SQL Server 2005. Its Size reaches 6 GB in less then two years periods.
    Can Any body guide me to reduce the size or how to maintain database. Can we split Database in SAP B1 ?
    Due to the size users getting less speed
    Awaiting your valuable guidance for the same.
    Best Regards,
    Chintesh Soni

    Hi Chintesh,
    I would advise caution doing any of the things suggested in SAP Note 548772. In particular, I strongly recommend you do NOT set auto-shrink on. This is a really bad idea on a production database and I can't understand why SAP would suggest it.
    Is it the data file that is 6GB or the overall size of the database (ie data and log files)? If your log file is large  then this can slow performance. I recommend setting up transaction log backups on an hourly basis. This is good practice and not only keeps the log file healthy but also gives you the option to recover your data to the last transaction log backup in the case of an emergency. If you don't want transaction log backups then do as the SAP note mentions and set the recovery model to simple and do a once-off truncation of the log file.
    Are you doing regular maintenance on the database (ie rebuilding indexes, updating statistics)? Are you monitoring fragmentation on the data drive and doing a defrag occasionally to keep the drive healthy?
    Kind Regards,
    Owen

  • Convert SQL server database into SAP readable (encrypted) XML for SAP tool?

    Could anyone kindly let me know what is the procedure to convert SQL server database into SAP readable (encrypted) XML for SAP Authoring tool???

    So If I understood it correctly there an existing propriertory question bank with SQL server. You are looking at an option to migrate all the tests and questions from the existing system to the LSO system. Right ?
    I am still not clear on the xml conversion. Have you guys found a solution which could be achieved through a xml file ?
    am not aware of a way through which you could import only a xml file and create tests/questions. If you have a sample xml file then forward me so that I could do some testing on my end.As per my knowledge you could do one of the following. I
    1. Create the tests and questions manually in Authoring Environment. It will be a time consuming task. Based on the number of questions you have you might have to assemble a team of content developers to acheive this.
    2. Alternatively, you could create a Adobe Flash based assessment. The Flash component would be the front-end and will read from a xml file to display the questions and to drive the funcationality. This would be a easier and less time consuming than creating the assessments manually in authoring environment. However, you might miss out some of the functionality available in the Test Author of Authoring Environment unless you have all the functionality replicated inside Flash. This would require one time effort in creating the Flash template and the xml file structure. Once that is created you could create multiple assessments by just replacing the xml file. If you select this approach then you would have to ensure the data from SQL is converted in the desired xml format required by your Flash component.
    Please let me know if you require any further guidance or clarification regarding this.
    Regards,
    Ravi Sekhar

  • Importance of Common Database in SAP B1

    hi guys,
    Up to this point, its not very clear to me if it is necessary to back the Common Database of SAP business one.
    As per documentation, it states that Common database – includes tables for basic initialization of any new company database (for example, built-in reports and system queries). This means that every new database created, this is the time when Common Database is update or something?
    My main concern here is, is it necessary for me to back/restore both the common and reg company database? I need to know this as early as possible because I am not backing up this common database .
    Thanks,
    Beth

    hello Lili,
    The common database stores required tables that used when run company databases. it is System Databases. In addition to the SAP Business One company database with the application data, you should backup the database SBO-Common once after installation, and after each upgrade.
    when creating new company database, there maybe updating process of common database beside upgradingPL.
    Based on securityguide file, it states:
    Creating the SBO_SP_Role in Each New Database
    This role enables execution permissions only to SAP Business One stored procedures in the specific database.
    The following procedure should be carried out on the SBO-COMMON database and the company database.
    1. On the Microsoft SQL Server Management Studio navigation pane, choose Databases &#8594; SBO-COMMON (or company database) &#8594; Security &#8594; Roles &#8594; Database Roles.
    Right Click and choose New Database Role – Database Role – New window appears.
    2. Enter SBO_SP_Role in the Name field and choose OK.
    The list of Roles appears in the right pane.
    3. Double-click the new role and choose from the left pane Securables.
    4. From the right pane, press the Add button. The Add Objects window appears.
    5. On the Add Objects window choose All Objects of the Types and press OK. The Select Objects Types window appears. Choose Stored Procedures. Press OK to confirm and close the window.
    6. For SAP Business One stored procedures, select the EXEC option in the bottom pane.
    Stored procedures might change in future releases of SAP Business One, therefore, this role should be updated accordingly. Instructions to change the role due to changed stored procedures will be included in the documentation of future versions.
    See Appendix A – Stored Procedures in SBO-Common and Appendix B - Stored Procedures for Regular Company
    Rgds,

  • Connecting and Updating External Database from SAP

    Connecting and Updating External Database from SAP
    How can i connect SAP Database to External database?
    How can i update external databas from SAP withouting using BI/BW, Workflow or Net Weaver?
    If anyone know please let me inform.
    Thanks in Advance.
    Jahnavee Trivedi

    Steps
    1. Create an entry in tnsnames.ora for the remote oracle DB
    2. Test sqlplus user/pass@remote 
    3. create a synonym which points to a table at remote DB check docs.oracle.com
    4. user ABAP code execute SQL to insert data into local synonym which inturn updates the remote DB.
    I have done this in the past, it works great.
    It requries, DBA skills + ABAP programming
    -AJ

  • MULTI COMPANY DATABASE in SAP B1

    Hi there,
    If you are setting up multi company database in SAP Business One,
    is there a way for us to hide/unhide the other existing databases?
    beth

    Hi,
    You could always create a second SQL server instance and share the licence server.  I am doing this to test addons without effecting the production system.  if it runs on the same server you do not need a further licence for a new instance
    However, there are caveats:
    1)  both databases would have to run exactly the same addons.
    2) users would have to change the database server (instance) to switch between the companies.  this would also mean they would have to know an admin password.
    I am sure there will be more but they are the 2 that spring to mind.
    thanks,
    mike

  • Changes to existing Reports,Dictionary objects when we migrate DataBase to SAP HANA

    Hi Experts,
               Can you please let me know the changes that effect to existing ABAP Dictionary objects, Reports, MPP etc... that we build by using ABAP if we migrate our underlying database to SAP HANA from any RDBMS.
                           Thanks in advance.
    Regards,
    Sandeep Rajanala

    Dear Sandeep Rajanala,
    In general the existing ABAP code(reports, classes, module pool programs, function modules etc) runs on SAP HANA as before and the existing dictionary objects like tables, views, DDIC types and structures continues to exist and work as before after migration.
    However if the existing ABAP Code relies on the technical specifics of the old database , ABAP Code changes might be necessary(which is the case for any database migration ).
    For example,
    Your ABAP code uses a feature that is specific to the old database and not in the SQL standard and therefore not in Open SQL(consumed via Native SQL using EXEC SQL or ADBC interface)
    You have ABAP code that relies on unspecified undocumented implementation behaviour of the old database
    the above cases may need minor code changes in ABAP during HANA migration inorder to ensure that your ABAP Code runs with functional correctness after migration.
    The SAP note 1785057 gives guidelines on migrating the existing ABAP Custom Code for HANA.
    Additionally we have several code inspector checks to find the ABAP code that requires changes and you can find details about these check in SAP note 1912445.
    In addition you can find an elaborate guide for transitioning custom ABAP code to HANA here which has a dedicated section on required and recommended adaptations during custom code migration.
    You can also find the recording of the SAP Teched 2013  hands on session which focuses completely on ABAP Custom Code migration aspects for HANA here
    Hope this answers your question and gives you some pointers on how you could prepare your ABAP for migrating to HANA.
    Please revert back if you have further questions.
    Best Regards
    Sundar.

  • Update database outside SAP using Abap program

    Hi guys, I have the following scenario:
    Today, I have an abap program that calls a RFC to update a database outside SAP using Business Connector.
    The problem is that I won't be allowed to use Business Conncetor (and can't use XI too) to access the outside database (SQL Server 05).
    Is possible to update the SQL Server 05 from an Abap program without a Java based connector? Because my main problem is that I can't use Java...
    Thank you
    Robert

    hi,
    you can use the database connection
    >exec
    > native sql statment
    >endexec
    check theese links for generating source code in ABAP
    [How to use INSERT in EXEC SQL ...... ENDEXEC ?;  insert data to external database
    [exec sql help;  read data from external database
    check theese links for configurating of DBCO (DataBase COnnection)
    [/thread/108422 [original link is broken];
    [http://help.sap.com/saphelp_nw04/helpdata/en/df/455ec9747111d6b25100508b6b8a93/frameset.htm]
    hope that is useful.
    Regards
    Marco

  • RFID application - SQL - SAP

    Hi!
    Could you help me. I've a Symbol RFID device with ActiveSync and eConnect programs.
    My aim is by reading tags send this information to the database on SAP server for example using Wi-FI.
    But I don't know which programm(application) I need to install on my Pocket PC Should I install a programm that builds a SQL database on my RFID reader?
    And one more question what is SAP Console is there any PC pocket SAP Consol.
    I think this programm must be compatible with Symbol devices.

    SAP Console is part of the install of the GUI.  I do not advise you put is on a pocket PC, (won't fit I'm sure) 
    Your RFID reader will need to do a telnet session to the PC/server running SAP Console.  Look up Georgia Softworks for that info.
    We have wireless Intermec scanners that connect via the telnet session to SAP Console then to the backend.  The Intermec scanners have a custom program for our shipping system. 
    As for pocket pc, you can load sapgui on and scan directly in to that on a transaction, that's if you can do wireless and scan at the same time.

  • Restoration of Database Sql Server 2000

    Hello Experts,
    In system copy process ,
    I have installed New SAP 5.0 Server ( Database - Sql server 2000 ) on window 2003 server edition
    and have backup of old production server.
    How to restore backup in New SAP server or in database Sql server 2000.
    Please give step by step information to restore backup process.
    Thanks ,
    Rahul S.S.

    Hi Rahul,
    Please follow restore complete backups section in the article below, it explains step by step various scenarios.
    [http://technet.microsoft.com/en-us/library/cc966495.aspx]

  • Error export from my database sql 2005 with Windows 2003 abap+java

    Hi all
    I'm trying to create an Export from my database sql 2005 with Windows 2003, but SAPINST starts with an error. ABAP+JAVA stack
    While running the export preparation, I am getting the following error;
    INFO 2010-09-08 12:12:43
    Output of C:\j2sdk1.4.2_13-x64\bin\java.exe -classpath D:\usr\sap\BID\SYS\global\sltools\sharedlib\launcher.jar -showversion -Xmx256m com.sap.engine.offline.OfflineToolStart com.sap.sl.ut.manager.UtlMain
    JRBIWD/sapmnt/BID/SYS/global/security/lib/tools/iaik_jce.jar;
    JRBIWD/sapmnt/BID/SYS/global/security/lib/tools/iaik_jsse.jar;
    JRBIWD/sapmnt/BID/SYS/global/security/lib/tools/iaik_smime.jar;
    JRBIWD/sapmnt/BID/SYS/global/security/lib/tools/iaik_ssl.jar;
    JRBIWD/sapmnt/BID/SYS/global/security/lib/tools/w3c_http.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/sap.comsl.ut.infoprovider_lib.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/sap.comsl.ut.manager.offline.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/antlr.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/exception.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/jddi.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/logging.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/offlineconfiguration.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/opensqlsta.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/tc_sec_secstorefs.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/sap.comtcsdtcvlimpl.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/SDMutil.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/SLUtil.jar;D:\usr\sap\BID\DVEBMGS01\exe\mssjdbc\base.jar;D:\usr\sap\BID\DVEBMGS01\exe\mssjdbc\util.jar;D:\usr\sap\BID\DVEBMGS01\exe\mssjdbc\sqlserver.jar;D:\usr\sap\BID\DVEBMGS01\exe\mssjdbc\spy.jar -export -type=keydb "-expfile=C:/Program Files/sapinst_instdir/NW04S/LM/COPY/MSS/EXP/CENTRAL/AS/PREEXP/usages_data.xml" -log=UTL_load_usages.log -sid=BID -dsn=jdbc/pool/BID -ssprops=D:/usr/sap/BID/SYS/global/security/data/SecStore.properties -ssk=D:/usr/sap/BID/SYS/global/security/data/SecStore.key is written to the logfile C:/Program Files/sapinst_instdir/NW04S/LM/COPY/MSS/EXP/CENTRAL/AS/PREEXP/UTL.java.log.
    WARNING 2010-09-08 12:12:46
    Execution of the command "C:\j2sdk1.4.2_13-x64\bin\java.exe -classpath D:\usr\sap\BID\SYS\global\sltools\sharedlib\launcher.jar -showversion -Xmx256m com.sap.engine.offline.OfflineToolStart com.sap.sl.ut.manager.UtlMain
    JRBIWD/sapmnt/BID/SYS/global/security/lib/tools/iaik_jce.jar;
    JRBIWD/sapmnt/BID/SYS/global/security/lib/tools/iaik_jsse.jar;
    JRBIWD/sapmnt/BID/SYS/global/security/lib/tools/iaik_smime.jar;
    JRBIWD/sapmnt/BID/SYS/global/security/lib/tools/iaik_ssl.jar;
    JRBIWD/sapmnt/BID/SYS/global/security/lib/tools/w3c_http.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/sap.comsl.ut.infoprovider_lib.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/sap.comsl.ut.manager.offline.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/antlr.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/exception.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/jddi.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/logging.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/offlineconfiguration.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/opensqlsta.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/tc_sec_secstorefs.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/sap.comtcsdtcvlimpl.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/SDMutil.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/SLUtil.jar;D:\usr\sap\BID\DVEBMGS01\exe\mssjdbc\base.jar;D:\usr\sap\BID\DVEBMGS01\exe\mssjdbc\util.jar;D:\usr\sap\BID\DVEBMGS01\exe\mssjdbc\sqlserver.jar;D:\usr\sap\BID\DVEBMGS01\exe\mssjdbc\spy.jar -export -type=keydb "-expfile=C:/Program Files/sapinst_instdir/NW04S/LM/COPY/MSS/EXP/CENTRAL/AS/PREEXP/usages_data.xml" -log=UTL_load_usages.log -sid=BID -dsn=jdbc/pool/BID -ssprops=D:/usr/sap/BID/SYS/global/security/data/SecStore.properties -ssk=D:/usr/sap/BID/SYS/global/security/data/SecStore.key" finished with return code 64. Output:
    java version "1.4.2_13"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_13-b06)
    Java HotSpot(TM) 64-Bit Server VM (build 1.4.2_13-b06, mixed mode)
    ERROR 2010-09-08 12:12:46
    CJS-30071  Execution of UTL tool 'C:\j2sdk1.4.2_13-x64\bin\java.exe -classpath D:\usr\sap\BID\SYS\global\sltools\sharedlib\launcher.jar -showversion -Xmx256m com.sap.engine.offline.OfflineToolStart com.sap.sl.ut.manager.UtlMain
    JRBIWD/sapmnt/BID/SYS/global/security/lib/tools/iaik_jce.jar;
    JRBIWD/sapmnt/BID/SYS/global/security/lib/tools/iaik_jsse.jar;
    JRBIWD/sapmnt/BID/SYS/global/security/lib/tools/iaik_smime.jar;
    JRBIWD/sapmnt/BID/SYS/global/security/lib/tools/iaik_ssl.jar;
    JRBIWD/sapmnt/BID/SYS/global/security/lib/tools/w3c_http.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/sap.comsl.ut.infoprovider_lib.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/sap.comsl.ut.manager.offline.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/antlr.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/exception.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/jddi.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/logging.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/offlineconfiguration.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/opensqlsta.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/tc_sec_secstorefs.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/sap.comtcsdtcvlimpl.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/SDMutil.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/SLUtil.jar;D:\usr\sap\BID\DVEBMGS01\exe\mssjdbc\base.jar;D:\usr\sap\BID\DVEBMGS01\exe\mssjdbc\util.jar;D:\usr\sap\BID\DVEBMGS01\exe\mssjdbc\sqlserver.jar;D:\usr\sap\BID\DVEBMGS01\exe\mssjdbc\spy.jar -export -type=keydb "-expfile=C:/Program Files/sapinst_instdir/NW04S/LM/COPY/MSS/EXP/CENTRAL/AS/PREEXP/usages_data.xml" -log=UTL_load_usages.log -sid=BID -dsn=jdbc/pool/BID -ssprops=D:/usr/sap/BID/SYS/global/security/data/SecStore.properties -ssk=D:/usr/sap/BID/SYS/global/security/data/SecStore.key' aborts due to database connection error with return code 64.<br>DIAGNOSIS: The connection parameters are wrong or the database server is shutdown.<br> SOLUTION: Check 'UTL_load_usages.log' and 'C:/Program Files/sapinst_instdir/NW04S/LM/COPY/MSS/EXP/CENTRAL/AS/PREEXP/UTL.java.log' for more information.
    ERROR 2010-09-08 12:12:46
    FCO-00011  The step getUsageTypes with step key |NW_Prepare_Export|ind|ind|ind|ind|0|0|NW_Java_Prepare_Export_Dialog|ind|ind|ind|ind|5|0|getUsageTypes was executed with status ERROR .
    Could anyone please help me out on this, if possible?
    Thanks
    JM

    Hi,
    please ensure that you use a SAP supported JDK as below:
    716604    for the Sun JDK (Windows, Linux, Solaris)
    709140    Recommended JDK and VM Settings for the WebAS630/640/7.0
    And the re try the export pls.
    Regards,
    Snow

  • Rejected: Access Third party database from SAP

    Hi,
    Below mentioned query was rejected by moderator, I would like to know the specific reason for the same.
    Kindly let me know which specific rule applies to reject my below query.
    I want to connect third party SQL database access from SAP for read and write data into third party SQL server.
    How it is possible?
    Regards,
    Himanshu Patel.

    Eitan Rosenberg wrote:
    So why this was not rejected ?
    Connect External Database SQL server from ABAP
    Regards .
    I think you do understand that it's not possible to check each & every thread in the ABAP forums, considering the high volume of activity. So we have to rely on fellow SDNers to report such threads, in that case we can take action.
    May be nobody reported it and so it might have escaped the axe, just a guess!
    BR,
    Suhas

  • Just started supporting Oracle Databases  for SAP Systems

    Hello Guys/Girls,
    I am working as oracle dba for the past 7 years, but this is the first time, I got an opportunity to adminster databases supporting SAP systems. I am doing search on SAP Network, and gathered information on BRTOOLS, SAPGUI etc., but could not find the details what I am looking for like, database objects growth rate, sap-oracle database performance specific details, as a oracle dba what are the DOs&DONTs etc., After made a lot of search on google, I found a book from O'Reilly, but that book covers older SAP, and Oracle versions. Our Client uses oracle 9i, and 10g primarily.
    I am confident as a Oracle DBA supporting non-sap systems, but not SAPsystems. Is any one of you pls., suggest me or provide me some guide lines in terms of Database Management.
    Appreciate your time!

    Abhi
    Greate to meet another DBA in forum.The big problem we will face is SQL Tune.
    Nothing much Diffnt supporting SAP.SAP PRovided some ready made tools to monitor and to solve.Reg tuning still we can follow same methoda but with approval from SAP or by ref SAP notes.Which u can find at service market place.
    You can find some PDfs in sap market place and sdn.Which are ex'ly for DBas.
    Reg Growth rate you can have a look on sap transactions and there are some notes also.I dont think there is specific Book or Doc which will say Dos and donts.
    Performance we used to follow same methoda as a Dbas with ref of sap notes and support for any side effects.
    let me know if are in need of any specific info
    Regards
    Vinod

  • Need to connect to GreenPlum Database in SAP BI 4.0

    Hi ,
    We Need to connect to GreenPlum Database in SAP BI 4.0,
    i dont see any specific driver to set up a system dsn for this data source.
    So can any one share your experience if you built a universe based on green plum db(UNX using IDT in 4.0)
    or even in earlier versions of BO how to create a system dsn for greenplum db,
    which driver we need to use.

    Hi,
    Infact, GreenPlum 4 is not 'officially supported' with BI 4.0 until Feature Pack 03 next year.
    This is OK currently:
    Greenplum     3.2     JDBC     PostgreSQL 8.4 JDBC
    Greenplum     3.2     ODBC     PostgreSQL 8.4 ODBC
    This will come with 4.0.FP03 :
    Greenplum     4     JDBC     PostgreSQL JDBC 8.4-701
    Greenplum     4     ODBC     PostgreSQL ODBC 9.00.03.00
    Regards,
    H

Maybe you are looking for

  • When using HDMI to HDMI cable the Master Sound Control is locked.

    master sound control is locked when using HDMI to HDMI using an HDTV for the display. Although itunes sound control works.  Why is the Master Control locked?

  • Carlo Scala rider Q2: problems with iPhone 3G under IPhone OS 3.O ?

    Hi, My Carlo scala rider Q2 Headset was working fine with my iPhone 3G, until this latter was upgraded to iPhone 3.0 OS. Since that day, the microphone of my headset is no more active and I've check it was the same with a brand-new Carlo Scala Rider

  • Portal 7 on Solaris 10 x86

    I am trying to setup a demo of Portal Server 7 on a laptop running Solaris 10 x86. I have tried both non-global and global zones and I continue to get the same results. The installer seems to complete successfully. However when I access http://server

  • Date created not working in Finder

    In finder, after I import photos, or even look at photos on a NAS drive created well before I got the Mac, the date modified and date created is exactly the same. When I look at the same files under Windows Explorer, they show correct date created (i

  • ITunes 7.0 Says Update is complete - but is not

    Hi - Different angle on the iTunes 7.0.1 headache. iTunes syncs to my iPod (30g click wheel b/w) and says update is complete. But there is no music on my iPod! Any help? Is there an option to download the previous version of iTunes? The kicker was fi