Mangage SQL Azure is not working

Hi Azure team,
I have installed Google chrome in my laptop, but i cant open sql azure using management portal in azure.
I verified silver light is enabled in chrome.
Kindly let me know what will be the issue and how to open SQL azure from manage portal ?

Hi Saravanabharathi,
According to your description, you could not open SQL Azure via Windows Azure Platform Management Portal in Google chrome. In theory, because the Windows Azure Platform Management Portal
 is built on Silverlight, you can view, monitor and manage the exposed aspects of SQL Database with any browser using the web management tool.
You need to first sign in with the Windows Live ID that you’ve associated to your Windows Azure account. You can post error message or detail for analysis. Or
 I recommend you try to open the Management Portal by using Internet Explorer (IE) 10.0 or higher version of IE. By default, Internet Explorer displays automatically pop-ups that appear as a result of you clicking a link or button.
 Now, to reach the new management portal, you need go to:
http://windows.azure.com .
For more information about using  the Database Manager from the Management Portal, you can review the following articles.
http://blogs.msdn.com/b/sqlazure/archive/2010/12/01/10099203.aspx
https://social.technet.microsoft.com/wiki/contents/articles/4723.getting-started-with-windows-azure-sql-database-development.aspx
Regards,
Sofiya Li
Sofiya Li
TechNet Community Support

Similar Messages

  • SQl loader is not working in 10g but working in 9i

    In My PC i have installed both 9i and 10g. could you please tell me why it is not working

    "SQL loader is not working" is rather like "my car won't start" http://tkyte.blogspot.com/2005/06/how-to-ask-questions.html
    The 9i Oracle Client install includes sqlldr. The 10g Oracle Client install does NOT include sqlldr. You'd have to do a "Custom" Install and specifically select "Oracle Database Utilities" to install.
    See MetaLink Note#437377.1
    Edited by: Hemant K Chitale on Dec 31, 2008 3:58 PM
    Edited by: Hemant K Chitale on Dec 31, 2008 4:00 PM

  • Sql Monitor is not working for forms10g

    Hi All,
    Sql Monitor is not working for forms10g.How can i solve this problems.
    Regards
    Gopinath M

    using sqlmonitor i have traced the forms 6i (.fmx),in this case toad additional
    software sql monitor is automatically added the frmbld.exe in application.
    whatever i am doing in forms runtime the sqlmonitor provide the sql query.
    for examble i am opening the lov with the help of F9.Now the sqlmonitor trace
    the sql query for that lov item.so its very helpful to see the query without
    the source(.fmb).
    Now the problem is the sqlmonitor is not added the iexplore.exe in application.
    because it added frmbld.exe only not for iexplore.exe.but the 10g forms are
    running from the explorer.is there any other forms trace method is available
    pls kindly guide to me.

  • In Oracle this SQL update tatement not working but in MS SQL it works

    Dear Friends,
    The following sql update statement work fine in MS sql server but not working in Oracle. Can you kindly suggest, What is wrong with this statement ? and is their any other way of achieving the same in Oracle.
    UPDATE INPUTSTREET SET EDIT_FLAGS=S.EDIT_FLAGS From INPUTSTREET G, INPUT_SEGBASE S Where G.GEOKEY=S.GEOKEY
    This statement give error in Oralce saying - Statement not ended properly
    Cheers,
    Vinay

    You would normally write
    UPDATE inputStreet g
       SET edit_flags = (SELECT s.edit_flags
                           FROM input_segbase s
                          WHERE s.geokey = g.geokey)If you don't want to update all the rows in inputStreet, you can add a WHERE EXISTS clause.
    Justin
    Distributed Database Consulting, Inc.
    http://www.ddbcinc.com/askDDBC

  • Azure Sql connection from azure website not working

    I'm have the following connection problem when connecting to the website is deployed to azure. The site work locally when connecting to Azure Sql using the same account. The site is MVC 4 EF 5.
    A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections.
    (provider: Named Pipes Provider, error: 40 - Could not open a connection to SQL Server)
    Here is my web.config.
    <?xml version="1.0" encoding="utf-8"?>
    <!--
      For more information on how to configure your ASP.NET application, please visit
      http://go.microsoft.com/fwlink/?LinkId=169433
      -->
    <configuration>
      <configSections>
        <!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
        <section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=4.4.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
      </configSections>
      <connectionStrings>
        <add name="MyWhesEntities" connectionString="metadata=res://*/MyWhesModel.csdl|res://*/MyWhesModel.ssdl|res://*/MyWhesModel.msl;provider=System.Data.SqlClient;provider connection string=&quot;data source=localhost;initial catalog=mywhes;integrated
    security=True;MultipleActiveResultSets=True;App=EntityFramework&quot;" providerName="System.Data.EntityClient" />
        <add name="MyWhesContext" connectionString="tcp:ngw4ziez6g.database.windows.net,1433;Database=mywhes;UserID=********;Password=********;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;" providerName="System.Data.SqlClient" />
      </connectionStrings>
      <appSettings>
        <add key="webpages:Version" value="2.0.0.0" />
        <add key="webpages:Enabled" value="false" />
        <add key="PreserveLoginUrl" value="true" />
        <add key="ClientValidationEnabled" value="true" />
        <add key="UnobtrusiveJavaScriptEnabled" value="true" />
        <add key="enableSimpleMembership" value="false" />
        <add key="autoFormsAuthentication" value="false" />
      </appSettings>
      <system.web>
        <compilation debug="true" targetFramework="4.0">
          <assemblies>
            <add assembly="System.Data.Entity, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
          </assemblies>
        </compilation>
        <httpRuntime />
        <machineKey />
        <authentication mode="Forms">
          <forms loginUrl="~/Account/Login" timeout="2880" />
        </authentication>
        <pages controlRenderingCompatibilityVersion="4.0">
          <namespaces>
            <add namespace="System.Web.Helpers" />
            <add namespace="System.Web.Mvc" />
            <add namespace="System.Web.Mvc.Ajax" />
            <add namespace="System.Web.Mvc.Html" />
            <add namespace="System.Web.Optimization" />
            <add namespace="System.Web.Routing" />
            <add namespace="System.Web.WebPages" />
          </namespaces>
        </pages>
        <membership defaultProvider="WhesMembershipProvider">
          <providers>
            <clear />
            <add name="WhesMembershipProvider" type="MyWhes.Helpers.WhesMembershipProvider" connectionStringName="MyWhesContext" />
          </providers>
        </membership>
        <profile>
          <providers>
            <clear />
          </providers>
        </profile>
        <roleManager defaultProvider="WhesRoleProvider" enabled="true" cacheRolesInCookie="true">
          <providers>
            <clear />
            <add name="WhesRoleProvider" type="MyWhes.Helpers.WhesRoleProvider" connectionStringName="MyWhesContext" />
          </providers>
        </roleManager>
        <sessionState mode="InProc" customProvider="DefaultSessionProvider">
          <providers>
            <add name="DefaultSessionProvider" type="System.Web.Providers.DefaultSessionStateProvider, System.Web.Providers, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" connectionStringName="DefaultConnection" />
          </providers>
        </sessionState>
        <customErrors mode="Off"></customErrors>
      </system.web>
      <system.webServer>
        <validation validateIntegratedModeConfiguration="false" />
      </system.webServer>
      <runtime>
        <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
          <dependentAssembly>
            <assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35" />
            <bindingRedirect oldVersion="1.0.0.0-2.0.0.0" newVersion="2.0.0.0" />
          </dependentAssembly>
          <dependentAssembly>
            <assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
            <bindingRedirect oldVersion="0.0.0.0-4.0.0.0" newVersion="4.0.0.0" />
          </dependentAssembly>
          <dependentAssembly>
            <assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35" />
            <bindingRedirect oldVersion="1.0.0.0-2.0.0.0" newVersion="2.0.0.0" />
          </dependentAssembly>
        </assemblyBinding>
      </runtime>
      <entityFramework>
        <defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlConnectionFactory, EntityFramework" />
      </entityFramework>
    </configuration>
        

      <connectionStrings>
        <add name="MyWhesEntities" connectionString="metadata=res://*/MyWhesModel.csdl|res://*/MyWhesModel.ssdl|res://*/MyWhesModel.msl;provider=System.Data.SqlClient;provider connection string=&quot;data
    source=localhost;initial catalog=mywhes;integrated security=True;MultipleActiveResultSets=True;App=EntityFramework&quot;" providerName="System.Data.EntityClient" />
        <add name="MyWhesContext" connectionString="tcp:ngw4ziez6g.database.windows.net,1433;Database=mywhes;UserID=********;Password=********;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;" providerName="System.Data.SqlClient"
    />
      </connectionStrings>     
    Hello James,
    Your Entity Framework Model "MyWhesEntities" connection string is still pointing to a local server, not to SQL Azure; or do you change it during runtime in your code?
    And you should add the "data source=" property name to your second connection string, it's missing.
    Olaf Helper
    * cogito ergo sum * errare humanum est * quote erat demonstrandum *
    Wenn ich denke, ist das ein Fehler und das beweise ich täglich
    Blog
    Xing

  • Connection to SQL Express on Azure VM not working

    Hello,
    I'm sorry if this has already been answered somewhere else, I didn't find anything that helped.
    Setup:
    Two VMs running Windows Server 2012 R2 Datacenter, one running SQL Express.
    When trying to connect to the SQL Express, the connection does not work.
    Here's what I've done so far:
    Set up the MSSQL instance, named SQLEXPRESS
    Set up a database, named TESTDB
    Set the instance to mixed authentification
    Set up VM endpoint TCP 1433
    Opened ports TCP 1433, 1434 in the firewall
    Activated the SQL Browser
    Activated the TCP/IP-Service in the SQL Server Network Configuration
    Testing connection via UDL file with the following information:
    Server name: <cloud storage>.cloudapp.net\<sql server>\SQLEXPRESS
    Username: sa
    Password: <password>
    Database: TESTDB
    Now it returns the following error:
    "Test connection failed because of an error in initializing provider.
    [DBNETLIB][ConnectionOpen (Connect()).]SQL Server does not exist or access denied."
    Now I keep reading that it may be a firewall problem. But I turned off the firewalls on both servers completely for testing purposes (they're test servers and will be deleted anyway) and it still doesn't work.
    I know I must have forgotten something, but what? Or am I entering the wrong connection information?
    Does anyone know?
    Regards
    ~Irolan

    Server name: <cloud storage>.cloudapp.net\<sql server>\SQLEXPRESS
    Hello,
    I wonder about the Server Name, it should be "MachineName\SQLEXPRESS" only.
    Olaf Helper
    [ Blog] [ Xing] [ MVP]
    Damn... you're right. That works. Uhm... but what if I want to access it from another computer that is not an Azure VM?

  • Sql Developer Launcher Not Working In Linux

    Hello,
    System Details:
    Fedora 19
    Sql Developer Version: Version 4.0.0.12
    Java Version:  OpenJDK 1.7.0-40
    I can launch Sql Developer from the command line successfully.
    /opt/sqldeveloper/sqldeveloper.sh
    But when I attempt to use the launcher icon, I receive a SIGSEGV error.  Here is the top of the hs_error.log file.
    # A fatal error has been detected by the Java Runtime Environment:
    #  SIGSEGV (0xb) at pc=0x000000317a062e00, pid=7680, tid=140636646749952
    # JRE version: OpenJDK Runtime Environment (7.0_40-b60) (build 1.7.0_40-mockbuild_2013_10_02_16_56-b00)
    # Java VM: OpenJDK 64-Bit Server VM (24.0-b56 mixed mode linux-amd64 compressed oops)
    # Problematic frame:
    # C  0x000000317a062e00
    The ~/.sqldeveloper/jdk file contains the following:
    /usr/lib/jvm/java-1.7.0-openjdk-1.7.0.60-2.4.2.7.fc19.x86_64
    And my /usr/share/applications/sqldeveloper.desktop file contains the following:
    [Desktop Entry]
    Encoding=UTF-8
    Name=SQL Developer
    Comment=Oracle SQL Developer
    Icon=/opt/sqldeveloper/icon.png
    Exec=/opt/sqldeveloper/sqldeveloper.sh
    Terminal=true
    Type=Application
    Categories=GNOME;Oracle;
    I'm just switching from Ubuntu to Fedora so this has not worked in the past.
    Thank you for any help,
    Ann

    The solution in https://forums.oracle.com/thread/2594033 worked.  I added the 2nd line below to /opt/sqldeveloper/sqldeveloper.sh.
    #!/bin/bash
    unset -v GNOME_DESKTOP_SESSION_ID
    cd "`dirname $0`"/sqldeveloper/bin && bash sqldeveloper $*
    Previously, I incorrectly updated ~/.bashrc to unset GNOME_DESKTOP_SESSION_ID.  That's why running Sql Developer from the command line worked, but not from the launcher.
    Thanks su.

  • Switch from MySQL to MS SQL Server, Query not working

    I'm sure there is a simple setting somewhere for this, but cannot seem to find it and really would appreciate some assistance. Have an application which uses JDBC to connect to a MySQL DB to run the following query without an issue:
    SELECT * FROM users
    This returns the desired results. Changed to connect to MS SQL Server 2000 using the JDBC-ODBC bridge and the same query returns no results. The problem, SQL Server wants this query instead:
    SELECT * FROM [users]
    I don't want to have to change queries depending on the DB, as that is supposed to be one of the advantages of JDBC. Is there a setting in MySQL (or the JDBC driver) to have it work correctly if I pass table names in []? Or is there a setting in MS SQL Server (or in the JDBC, or ODBC) to have it accept queries without the []?
    Or is there a different approach that I'm missing which would avoid this whole problem?
    Thanks,
    Matt

    I suspect your database definitions are different. It has nothing to do with your java code.
    The bracket syntax is used to indicate the more standard quoted identifiers in standard SQL.
    Thus you could do this in oracle and in MS SQL Server...
    SELECT * FROM "users"
    I suspect that the above will work for your MS SQL Server database and will not work for your Oracle database. However if you created the table in oracle and specifically used "users" (with the double quotes around the name) when creating the table then it would work.
    Of course if the database definitions are different it means you must use different SQL for each. Just as if the name of the table was 'other' rather than 'users'.

  • Iif() sql statement is not working please help. An expression of non boolean type specified the context

    the following sql is not working . If  sum(salary) = null   should be displayed  1 or 0
    select empname,iif((isnull(sum(salary),0)),1,0) from salary group by empname
    regards
    Pol
    polachan

    I think what you're looking at is this
    select e.empname,
    COALESCE(s.totalsal,0) as salary
    from employee e
    left join (select empname,sum(salary) as totalsal
    from salary
    group by empname
    )s
    on s.empname = e.empname
    where employee represents your master table containing employee information
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

  • Oracle 8i - PL/SQL sub query not working in PROC, but works ins SQL

    I have read about certain things not working in 8i and I think this is one of them, but I was wondering if anyone had a work around. In the place of the SELECT SYSDATE FROM DUAL, I have a table look up, where I am going to look up the OCN of the corresponding VENDOR_ID ( a column in the original query ). I am doing it in a decode statement because if the first condition in the decode statement is met, that's it. But if not, it needs to look up the OCN number in this other table. Simple enough, conceptually. I thought of a view but that necessitates a SELECT statement, too. Anyway, here is the code with the appropriate text bolded:
    CREATE OR REPLACE PROCEDURE tstINS_RATE_ROUTE_RECORDS_PROC (GET_CUR_PERIOD IN DATE) IS
         CUR_PERIOD DATE;
         BEGIN
         CUR_PERIOD := GET_CUR_PERIOD;
         Insert into RATE_ROUTE (
           CVBI_KEY
         , VENDOR_ID
         , OCN
         , ST_CD
         , PERIOD
         , MDFY_DT )
         Select
           C.CVBI_KEY
         , C.VENDOR_ID
         <b>, decode( c.send_lca, 'YES', 'XXX', (SELECT SYSDATE FROM DUAL) )</b>
         , decode( c.send_lca, 'YES', 'XX', SUBSTR(C.ZLOC,5,2) )
         , CUR_PERIOD
         , TO_CHAR(SYSDATE)
         FROM
           rpt_ds1_cnt_cat c
         , cogs_resource cr
         , cogs_t1activity ct1
         , rpt_ds1_aloc_zloc_reverse_vw az
         where (C.CVBI_KEY = CR.CVBI_KEY (+)
         and  CR.PERIOD = CUR_PERIOD)
         AND  (C.CVBI_KEY = CT1.CVBI_KEY (+)
         and CT1.PERIOD = CUR_PERIOD)
         and (az.master_route_name=c.aloc||'-'||c.zloc OR az.reversed=c.aloc||'-'||c.zloc)
         END; -- INS_RATE_ROUTE_RECORDS_PROC

    have read about certain things not working in 8i and I think this is one of them,Yes as I said scalar sub-queries were also not recognized within PL/SQL in 8i.
    Re: PLS-00103: Encountered the symbol "SELECT" when expecting one of the fo
    I was wondering if anyone had a work around.Write a function that returns the value. You may incur a performance penalty from a context switch to PL/SQL, but it may be balanced by the decode optimization you are attempting.

  • My SQL Developer is not working correctly! help

    hello!!
    My problem here is not like I can't live or work but it is REALLY annoying, see my SQL Developer is not taking any key different from letters and the space bar, I mean, if I use the enter key, doesn't change the line, if i use the backspace key doesn't erase if I use F5/F9 doesn't execute the query(s)!!!! and so the arrow keys don't work!!!
    any ideas why is that happening? and if so howcan i fix it?

    There is a well known but still unresolved bug causing this kind of behavior, if you are on SQL Developer 1.5.X you can work around the problem by loading default accelerators from:
    Tools -> Accelerators -> Load Preset -> Default
    If you are on 2.1.X the preset can be loaded from
    Tools -> Preferences -> Accelerators -> Other Actions -> Load Keyboard
    In 2.1 this problem has not been reported so far, so if you are in 1.5.X you may consider upgrading.

  • PL/SQL notification is not working

    Hi,
    We are using PL/SQL notification procedure to de-queue AQ in our application. Now the notification is not working in development instance whereas it is working in Live. The database parameter job_queue_processes was having value 0 in development database and it is now reset to 10. Still the problem exists. Please let us know what could be other reasons for failure of PL/SQL notification in AQ.
    Thanks
    Sreesha

    No version number.
    No DDL.
    No DML.
    No error messages.
    As already stated no clear understanding of what isn't working
    But equally important no clear understanding of what you implemented and how.
    If you want help you must be specific.

  • EA1 - SQL DDL Tab not working for 10.2.0.3 Oracle Apps DB

    I just downloaded the EA1 SQL Developer 1.5.0.51.70 for evaluation purposes. I am connecting to various types of databases - all databases are version 10.2.0.3.
    When I am connected to an Oracle Applications 11i database (10.2.0.3 version) as the apps user, then select a table, and then click on the SQL tab - I get a message Generating DDL and then the errors:
    o.d.db.DBUtil No more data to read from socket
    o.d.r.utils.DBObject Could not get schema Object:java.sql.SQLException:OALL8 is in an inconsistent state
    When I connect to one of our other in-house (non Oracle Apps) Oracle database 10.2.0.3 I am able to view the tables and the DDL in the SQL tab.
    Is there a reason why I am unable to view the DDL from the SQL tab for Oracle Apps databases
    Message was edited by:
    user571286
    Message was edited by:
    user571286

    If you get the same error when running the equivalent DBMS_METADATA through SQL*Plus (rather than through SQL Developer), I would assume that it is a problem with DBMS_METADATA in the database - this can be fixed (based on earlier posts, such as Re: ORA-06502 error on SQL tab by reinstalling DBMS_METADATA by running $ORACLE_HOME/rdbms/admin/catmeta.sql.
    If it works in SQL*Plus, then I would say it sounds like an issue with how SQL Developer is connecting to the database - simply based on the "no more data to read from socket".
    theFurryOne

  • Sql server agent not work

    hi every one ,
    i use sql server agent to make a job which delete some rows from my table at 12:00 AM
    this job works on (Mydatabase1) but when i make another job to another database(Mydatabase2)
    i get this error from ViewJob HIstory :
    Myjob2,Error,1,FATMA\MSSQLSERVER2008,Myjob2,step2,,Executed as user: NT AUTHORITY\SYSTEM. DELETE
    failed because the following SET options have incorrect settings: 'QUOTED_IDENTIFIER'. Verify that SET options are
    correct for use with indexed views and/or indexes on computed columns and/or filtered indexes and/or query
    notifications and/or XML data type methods and/or spatial index operations. [SQLSTATE 42000] (Error 1934).  The step
    failed
    please inform me what is that error means?and how can i fix it?and why this job work to database and not work for another!!!
    best wishes
    fatma
    fatma mohamed

    Hi Miloslav Peterka,
    i set Quoted Identifiers to true it was false,it woorked in first time after that i get this error(but in my worked job on myDatabase1 the Quoted Identifiers was false.)
    Date  24-05-2010 10:44:28 ص
    Log  Job History (AttendanceJob)
    Step ID  0
    Server  FATMA\MSSQLSERVER2008
    Job Name  AttendanceJob
    Step Name  (Job outcome)
    Duration  00:00:01
    Sql Severity  0
    Sql Message ID  0
    Operator Emailed  
    Operator Net sent  
    Operator Paged  
    Retries Attempted  0
    Message
    The job failed.  The Job was invoked by User sa.  The last step to run was step 1 (attStep).
    wat is the reason of that error?
    best wishes
    fatma mohamed

  • Azure CONSOLE not working

    The Azure CONSOLE stopped working on Friday 13th about the same time that a PORTAL update occurred.
    To clarify, this is a sample of the CONSOLE url I have been using for about a year now;
    https://mywebsite.scm.azurewebsites.net/DebugConsole/?shell=powershell
    Does anyone have an explanation for this..?
    The response I now get is shown below;
    Server Error in '/' Application.
    Runtime Error
    Description: An application error occurred on the server. The current custom error settings for this application prevent the details of the application error from being viewed remotely (for security reasons). It could, however, be viewed by browsers running on the local server machine.
    Details: To enable the details of this specific error message to be viewable on remote machines, please create a <customErrors> tag within a "web.config" configuration file located in the root directory of the current web application. This <customErrors> tag should then have its "mode" attribute set to "Off".
    <!-- Web.Config Configuration File -->
    <configuration>
    <system.web>
    <customErrors mode="Off"/>
    </system.web>
    </configuration>
    Notes: The current error page you are seeing can be replaced by a custom error page by modifying the "defaultRedirect" attribute of the application's <customErrors> configuration tag to point to a custom error page URL.
    <!-- Web.Config Configuration File -->
    <configuration>
    <system.web>
    <customErrors mode="RemoteOnly" defaultRedirect="mycustompage.htm"/>
    </system.web>
    </configuration>
    Simon Waymouth

    Read "sticky note" by David Ebbo, this fixes this problem
    Simon Waymouth

Maybe you are looking for

  • The Sims 2 crashes after installing Nightlife or Pets Expansion Packs

    I'm at the end of my rope, so I thought I would see if anybody out there can help me. I'm posting this on a few boards. I've been a huge fan of the Sims ever since the first game was released. I got my first Mac a year ago, and The Sims 2 for it for

  • Mail adapter

    Hi. I have the following scenario: I want to send an e-mail from SAP ERP, using XI mail adapter. I would like to ask the experts if what I'm doing is correct: - In the Integration Directory I defined the following objects: 1) Business system "IED_200

  • Oracle Client 11g Release 2 silent installation.

    Hi, I try to make a silent installation of oracle client 11g release 2 for windows 7 enterprise edition. I'm familiar with the response file, and how to create this in earlyer versions. But the "-record -destinationFile <filepath>" switch do not work

  • After Effects error last loggedd messafe was 8444. GPUmanager 2 sniffer code: 3

    Hello,       I just got new parts for my new computer im running CPU= i-7 4790 GPU= Asus Geforce GTX 770 2gb RAM= Corsair 24Gb 1600GHz Nothing is overclocked and the gtx and ram worked last week when i was using my amd 6-core processor. I am using Af

  • Documenting Joins in RPD

    Hi All, I want to document all Physical Joins present in RPD. Is there any way to do it instead of going through each and every join and documenting manually. Thanks