Oracle 10g sql error

insert into s_t_dv_entegrasyon
(office_code, dept_code, dv_tipi, hareket_tipi)
select a.office_code, a.code dv_code, b.code dv_tipi ,
c.code hareket_tipi
from s_t_departments_alt a, s_t_dv_type b , s_t_dv_hareket_tipi c
where c.sira >= 20
minus
select office_Code , dept_code, dv_tipi, hareket_tipi
from s_t_dv_entegrasyon;
This sql code is not running to oracle 10g but ,
running to oracle8,oracle9.
I don't now , How I solvage this problem.

what is the exact error?

Similar Messages

  • How to use Oracle 10G SQL features in OWB?

    We are using OWB repository 10.2.0.1.0 and OWB client 10.2.0.1.31. The Oracle version is 10 G (10.2.0.3.0). OWB is installed on Linux.
    Oracle 10G SQL offers
    1) Inserting Into a Table with Error Logging
    2) conditional_insert_clause, Specify the conditional_insert_clause to perform a conditional multitable insert.
    Did anyone use above features in OWB10G mapping?
    How do we use them?
    Thanks in advance.
    RI

    Hi,
    Just a thought on the multi-table insert. OWB generates multitable insert when one source is mapped to multiple targets only on the condition that after the splitter there should not be any OWB operator that can change the cardinality of the row-set coming out of the splitter (like joiners, filters, aggregators etc.)..
    Regarding the link, I was wondering where I could find a decent documentation of the shadow table and the DML Error Logging through OWB .. Thanks for the link.
    OWB error messages are basically Oracle Error Messages when you consider the code that gets deployed. Other than that VLD errors are sometimes mysterious and hard to debug.. Hope someone can give us more details on how to handle such VLD errors :)
    HTH
    -AP

  • Is there any difference in Oracle 9i SQL Loader and Oracle 10g SQL Loader

    Hi
    Can anyone tell me whether is there any difference in Oracle 9i SQL Loader and Oracle 10g SQL Loader?
    I am upgrading the 9i db to 10g and wanted to run the 9i SQL Loader control files on upgraded 10g db. So please let me know is there any difference which I need to consider any modifications in the control files..
    Thank you in advance
    Adi

    answered

  • Oracle 10g SQL

    Hi ,
    I want some information regarding Oracle 10g SQL Exam.Please provide any dumps,links,books or any other related information.
    Thanks in Advance
    Laxman

    login to otn.oracle.com to find more information on exams
    underline Steps to Become Oracle Certified_underline_
    http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=50#1
    If you are from India, below is the contact info
    Bangalore 080 41084657
    Chennai 044-66346114
    Delhi 011-46509015
    Hyderabad 040-66397157
    Kolkata 033-66162000
    Mumbai 022-67711214
    Ahemdabad 079-40024246
    Pune 020-66321002
    Thank You

  • Oracle 10g SQL Profiler Equivalent?

    As per the subject, I can monitor sessions via the web gui, but I need to see actual SQL statements that are hitting the 10g server. Is there an Oracle 10g SQL Profiler equivalent?

    XE?
    You might want to hunker down with some of the docco available at http://www.oracle.com/pls/db102/portal.portal_db?selected=1
    In particular, you could look at the 'Reference' manual (not SQL Reference, or any other ... Reference) and browse through the DBA_ and V$ views listed. The Concepts and Administration manuals are interesting as well.
    The specific views of interest include, but are not limited to, V$SQLAREA and V$SQLTEXT

  • Doc oracle 10g SQL in french

    Hi all.
    I don't know if i am allowed to make this request.
    I am lookink for a document 5pdf for example)
    about Oracle 10g SQL.
    I have some in english but i am looking for a french document.
    Any help is good.
    Thanks

    Your problem is most likely in decode - the return type in your expression will be character based on first search value ('null'), so it will be implicitly converted to character and then again implicitly converted to date by loading into date column. At some of this conversions you probably are loosing your time part. You can try instead use cast:
    SQL> desc t
    Name                                      Null?    Type
    LASTWRITTEN                                        DATE
    CREATEDON                                          DATE
    LASTUPDATEDON                                      DATE
    SQL> select * from t;
    no rows selected
    SQL> !cat t.ctl
    LOAD DATA
    INFILE *
    INTO TABLE T
    TRUNCATE
    FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '"' TRAILING NULLCOLS
    LASTWRITTEN
    "decode(:LASTWRITTEN,'null',cast(Null as date),
      to_date(:LASTWRITTEN,'YYYY-MM-DD HH24:MI:SS'))",
    CREATEDON
    "decode(:CREATEDON,'null',cast(Null as date),
      to_date(:CREATEDON,'YYYY-MM-DD HH24:MI:SS'))",
    LASTUPDATEDON
    "decode(:LASTUPDATEDON,'null',cast(Null as date),
      to_date(:LASTUPDATEDON,'DD/MM/YYYY HH24:MI:SS'))"
    BEGINDATA
    2007-02-15 15:10:20,null,null
    null,2007-02-15 15:10:20,null
    null,null,15/02/2007 15:10:20
    SQL> !sqlldr userid=scott/tiger control=t.ctl log=t.log
    SQL*Loader: Release 10.2.0.3.0 - Production on Fri Feb 29 00:20:07 2008
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    Commit point reached - logical record count 3
    SQL> select * from t;
    LASTWRITTEN         CREATEDON           LASTUPDATEDON
    15.02.2007 15:10:20
                        15.02.2007 15:10:20
                                            15.02.2007 15:10:20Best regards
    Maxim

  • Oracle 10g: Initialization error SQL*Net not properly installed

    Hello, everyone.
    I have an app that uses Oracle 10g client to connect a remote Oracle 10g server.
    I encountered a pop-up error saying
    " Initialization error SQL*Net not properly installed. "
    OracleHomeKey: SOFTWARE\ORACLE
    OracleHomeDir:
    Please advise a fix.
    Thanks.

    Maybe PL/SQL Developer is trying to use some missing registry values, or a missing ORACLE_HOME environment variable
    Check the ORACLE_HOME is pointing to your 10g client path, and then try to add the following entries in the registry, making a .reg file with the following, replacing with your paths, and executing (from Windows PATH variable
    [HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE]
    "inst_loc"="C:
    Program Files\\Oracle
    Inventory"
    "API"="D:\\oracle\\product\\10.1.0
    db_1"
    [HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE\ALL_HOMES]
    "HOME_COUNTER"="1"
    "DEFAULT_HOME"="HOME0"
    "LAST_HOME"="0"
    [HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE\ALL_HOMES\ID0]
    "NAME"="Oracle - ORACLE_HOME"
    "PATH"="D:\oracle\product\10.1.0\db_1"
    "NLS_LANG"="NA"
    [HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE\HOME0]
    "ID"="0"
    "ORACLE_GROUP_NAME"="Oracle - ORACLE_HOME"
    "ORACLE_HOME_NAME"="ORACLE_HOME"
    "ORACLE_HOME"="D:\\oracle\\product\\10.1.0\\db_1"
    I hope this help
    Regards,
    Alfonso Vicente

  • Oracle 10g Network Error

    Need some helpt...
    After successfully installing Oracle 10g on windows xp pro.. I can't access 10g from sql +/tnsping when not connected to the internet..I get error-
    TNS-12560 TNS:Protoco adapter error
    but this problem ceases once connected to the internet...
    I'm of the opinion something is pointing in the default direction!!!
    below are my tnsname and listener files...
    Would appreciate someones help..
    # listener.ora Network Configuration File: C:\Oracle_home\network\admin\listener.ora
    # Generated by Oracle configuration tools.
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = PLSExtProc)
    (ORACLE_HOME = C:\Oracle_home)
    (PROGRAM = extproc)
    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.1.2)(PORT = 1521))
    # tnsnames.ora Network Configuration File: C:\Oracle_home\network\admin\tnsnames.ora
    # Generated by Oracle configuration tools.
    ORCL =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.1.2)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = orcl)
    EXTPROC_CONNECTION_DATA =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1))
    (CONNECT_DATA =
    (SID = PLSExtProc)
    (PRESENTATION = RO)
    JAZZYDB =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.1.2)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = inglewoodDB)
    )

    Hi,
    >>192.168.1.2
    What happens if you change from the IP address to the host name of your machine?
    Cheers
    Legatti

  • Oracle 10g Installation Error on Windows 2008 server

    Hi Experts,
    I have tried to install Oracle 10g via "51036975 ORACLE 10.2.0.4 Failsafe Server 3.4.1.5 Windows 2008" as per note no. Note 1303262 - Oracle on Windows Server 2008. Server is 64 bit server.
    Oracle service is not getting started and showing as "starting" in services.msc. I cant stop the service. I have taken the restart of the server as well but no luck.
    Just before the end of installation of Oracle, one pop up box named isqlplussvc opened up stating as "Failed to start the service, Error:0, the operation completed successfully".
    Can you please suggest how to handle this error and start the service?
    Regards,
    Naresh.

    Hi All,
    Yes, I started with Failsafe server CD only. After trying installing Oracle couple of times, once the service didnt went into starting mode & it couldnt start as well. Then I started going ahead with SAP installation and later I found that the service got automatically started.
    I was under the impression that the service has to be started before going for SAP installation.
    Thanks all for your replies.
    Regards,
    Naresh.

  • Oracle 10g DBCA error - not enough space on root?

    Im running Oracle 10g on HP-UX 11i.
    Oracle software is installed ok. Already created a database succesfully. I have now deleted that database and am creating a new one using dbca.
    When I get to the final step I get the following error:
    You do not have enough free disk space to create the database. You need at least 785,408KB on /, you only have 753,664KB available please allocate more free disk space.
    The above is true but I am not putting any datafiles/ redo logs etc on root they are on a separte logical volume. Why does it need all this space on root? I cant add any more space to root anyway as I cant unmount root and extend it.
    Cant find anything about this in the oracle documentation, I can only think my oracle software install has got messed up causing this strange error?
    Can anyone help? Thanks.

    @ Oracle software is installed ok. Already created a database succesfully. I have now deleted that database and am creating a new one using dbca.
    When I get to the final step I get the following error:
    You do not have enough free disk space to create the database. You need at least 785,408KB on /, you only have 753,664KB available please allocate more free disk space.
    When you create database with DBCA, it gives a few options like General purpose, OLTP, etc.
    Did you pick same options both the time?

  • Oracle 10g XE Error when trying to open manager in browser

    Hi, i'm a newbies in oracle, i'm tryin to life with legal side, so in case with oracle i already downloaded oracle 10g Express Edition, i'm tryin to install it.. it succeed, but i dont know why if i try to open oracle home with this address in my browset [http://127.0.0.1:8080] its show an ERROR messages which is
    220- PC-NAME
    Unauthorised use of this FTP server is prohibited and may be subject to civil and criminal prosecution.
    220 PC-NAME FTP Server (Oracle XML DB/Oracle Database) ready.
    530 Please login with USER and PASS.
    530 Please login with USER and PASS.
    530 Please login with USER and PASS.
    530 Please login with USER and PASS.
    530 Please login with USER and PASS.
    530 Please login with USER and PASS.
    530 Please login with USER and PASS.
    530 Please login with USER and PASS.
    530 Please login with USER and PASS.
    221 Command Too Long. 2048 bytes maximum. Goodbye.
    i had try to adding exception in windows firewall with *1521 ,8080, 2030,* but the message still occurs... i had try many ways too,, its BIG ZERO.... i got nothing,
    i'm using windows vista Business... please anyone try to respon my thread....
    thanks
    Best Regards
    Wildan Abdat

    I figured a way around this in case anyone has the same problem in the future. I just opened Acrobat Pro X, clicked combine files into PDF, selected the file I wanted, saved the "binder" as PDF then saved another version as Reader Extended PDF. I think this helped because it essentially creaded a whole new PDF with the old PDF in it and getting rid of whater hashes or document properties in the last one that wouldn't allow it to work in Reader. Opens perfectly on other computers.

  • Oracle 10g installation error in WINDOWS7

    Hi,
    When am trying to install 10g in my PC, I am getting following error.
    Abnormal program termination. An internal error has occured.
    Please provide the following files to oracle support"
    "Unknown"
    "Unknown"
    "Unknown"
    Please help me out on this. Tell me the reason and required action to be taken.
    Thanks in advance,
    Diddy

    853307 wrote:
    Hi,
    Am gettting this error at first instance, when i click on setup file. I guess windows7 wont support oracle 10g. Is it the case??I wish you could answer all of my questions, so I could offer a better solution based on your answers.
    Anyway, Oracle 10g do not support Windows7 but it does not mean that you can not install it on windows 7. I assume that you're installing Oracle for education/testing purposed on a "client" operation system such as windows 7.
    Please watch this:
    http://www.youtube.com/watch?v=2Thx4r4elH8
    Best Regards,
    Gokhan
    If this question is answered, please mark appropriate posts as correct/helpful and the thread as closed. Thanks

  • Oracle 10g install error, FC5

    Im trying to install Oracle 10g on Fedora Core 5 (as per here: http://www.oracle-base.com/articles/10g/OracleDB10gR2InstallationOnFedora5.php).
    But having problems.
    The install process starts fine, then stops.
    Here's the last few lines of "installActions2006-03-20"
    INFO:
    *** Language Selection Page***
    INFO: Setting the 'SelectedLanguages ( SELECTED_LANGUAGES )' property to 'en,'. Received the value from response file.
    INFO:
    *** Specify Local Host Name Page***
    SEVERE: Abnormal program termination. An internal error has occured. Please provide the following files to Oracle Support :"/u01/app/oracle/oraInventory/logs/installActions2006-03-20_04-11-37PM.log"
    "/u01/app/oracle/oraInventory/logs/oraInstall2006-03-20_04-11-37PM.err"
    "/u01/app/oracle/oraInventory/logs/oraInstall2006-03-20_04-11-37PM.out"
    And here's the contents of "oraInstall.....err":
    Exception java.lang.NoClassDefFoundError occurred..
    java.lang.NoClassDefFoundError
    at oracle.sysman.oii.oiin.OiinNetOps.computeHostInfo(OiinNetOps.java:230)
    at oracle.sysman.oii.oiin.OiinNetOps.<init>(OiinNetOps.java:78)
    at oracle.sysman.oii.oiin.OiinNetOps.getNetOps(OiinNetOps.java:89)
    at oracle.sysman.oii.oiif.oiifw.OiifwHostNameWCDE.initialize(OiifwHostNameWCDE.java:111)
    at oracle.sysman.oii.oiif.oiifb.OiifbCondIterator.iterate(OiifbCondIterator.java:152)
    at oracle.sysman.oii.oiic.OiicDepWizEngine.doOperation(OiicDepWizEngine.java:424)
    at oracle.sysman.oii.oiif.oiifb.OiifbCondIterator.iterate(OiifbCondIterator.java:171)
    at oracle.sysman.oii.oiic.OiicPullSession.doOperation(OiicPullSession.java:1273)
    at oracle.sysman.oii.oiic.OiicSessionWrapper.doOperation(OiicSessionWrapper.java:289)
    at oracle.sysman.oii.oiic.OiicInstaller.run(OiicInstaller.java:546)
    at oracle.sysman.oii.oiic.OiicInstaller.runInstaller(OiicInstaller.java:929)
    at oracle.sysman.oio.oioc.OiocOneClickInstaller.runInstaller(OiocOneClickInstaller.java:1921)
    at oracle.sysman.oio.oioc.OiocOneClickInstaller.main(OiocOneClickInstaller.java:2149)
    Can anyone help me?
    Thanks.
    Mike

    I have tried installing 10g several times and it keeps failing. You said that the document is complete and the installation works fine. I would love to know how you got your installation to work because I am getting the same problem that this guy ran into.
    Re: Oracle 10g R2 on FC5; ORA-12157 error on installation
    Here is just a small part of the errors I am getting in my log file.
    ==========================================================
    Heap at VM Abort:
    Heap
    def new generation total 576K, used 369K [0xaba00000, 0xabaa0000, 0xabee0000)
    eden space 512K, 65% used [0xaba00000, 0xaba54388, 0xaba80000)
    from space 64K, 51% used [0xaba90000, 0xaba98398, 0xabaa0000)
    to space 64K, 0% used [0xaba80000, 0xaba80000, 0xaba90000)
    tenured generation total 1408K, used 550K [0xabee0000, 0xac040000, 0xafa00000)
    the space 1408K, 39% used [0x
    abee0000, 0xabf69af0, 0xabf69c00, 0xac040000)
    compacting perm gen total 4096K, used 3564K [0xafa00000, 0xafe00000, 0xb3a00000)
    the space 4096K, 87% used [0xafa00000, 0xafd7b3d8, 0xafd7b400, 0xafe00000)
    Local Time = Sun Apr 30 02:20:24 2006
    Elapsed Time = 0
    # The exception above was detected in native code outside the VM
    # Java VM: Java HotSpot(TM) Client VM (1.4.2_08-b03 mixed mode)
    # An error report file has been saved as hs_err_pid13937.log.
    # Please refer to the file for further information.
    Command = /u01/app/oracle/product/10.2.0/db_1/jdk/jre//bin/java has failed
    INFO: Configuration assistant "Oracle Net Configuration Assistant" failed
    *** Starting OUICA ***
    Oracle Home set to /u01/app/oracle/product/10.2.0/db_1
    Configuration directory is set to /u01/app/oracle/product/10.2.0/db_1/cfgtoollogs. All xml files under the directory will be processed
    INFO: The "/u01/app/oracle/product/10.2.0/db_1/cfgtoollogs/configToolFailedCommands" script contains all commands that failed, were skipped or were cancelled. This file may be used to run these configuration assistants outside of OUI. Note that you may have to update this script with passwords (if any) before executing the same.
    SEVERE: OUI-25031:Some of the configuration assistants failed. It is strongly recommended that you retry the configuration assistants at this time. Not successfully running any "Recommended" assistants means your system will not be correctly configured.
    1. Check the Details panel on the Configuration Assistant Screen to see the errors resulting in the failures.
    2. Fix the errors causing these failures.
    3. Select the failed assistants and click the 'Retry' button to retry them.
    INFO: User Selected: Yes/OK

  • Oracle 10g installation error in AIX 6.1 Platform

    Friends ,
    While installing Oracle 10g (10.2.0.1.0) on AIX 6.1 platform ,I get the following errors :
    Checking operating system requirements ...
    Expected result: One of 5200.004,5300.002
    Actual Result: 6100.01
    Check complete. The overall result of this check is: Failed <<<<
    Problem: Oracle Database 10g is not certified on the current operating system.
    Recommendation: Make sure you are installing the software on the correct platform.
    =======================================================================
    Checking operating system package requirements ...
    Check complete. The overall result of this check is: Not executed <<<<
    OUI-18001: The operating system 'AIX Version 6100.01' is not supported.
    Recommendation: Install the required packages before continuing with the installation.
    =======================================================================
    Checking recommended operating system patches
    Check complete. The overall result of this check is: Not executed <<<<
    OUI-18001: The operating system 'AIX Version 6100.01' is not supported.
    Recommendation: You may actually have installed patches which have obsoleted these, in which case you can successfully continue with the install. If you have not, it is recommended that you do not continue. Refer to the readme to find out how to get the missing patches.
    =======================================================================
    Is there any solution to resolve this problem like patch update or anything ? Barring this , does oracle 11g is recommended in AIX 6.1 unix platform ? Do you have any idea plz ?

    shipon_97 wrote:
    Friends ,
    While installing Oracle 10g (10.2.0.1.0) on AIX 6.1 platform ,I get the following errors :
    Checking operating system requirements ...
    Expected result: One of 5200.004,5300.002
    Actual Result: 6100.01
    Check complete. The overall result of this check is: Failed <<<<
    Problem: Oracle Database 10g is not certified on the current operating system.
    Recommendation: Make sure you are installing the software on the correct platform.
    =======================================================================
    Is there any solution to resolve this problem like patch update or anything ? Barring this , does oracle 11g is recommended in AIX 6.1 unix platform ? Do you have any idea plz ?Check certification matrix:
    http://www.oracle.com/technology/support/metalink/index.html
    10gR2 only 64bit is certified with AIX 6.1

  • Oracle 10G JMS error : Failed to handle dispatch message ... exception ORABPEL-05002

    Hi All,
    We are using a JMS adapter as partner link in a BPEL process to produce messages to JMS Queue.
    We are getting an error while producing a message to a JMS Queue.
    The error comes for 1 or 2 instances among 5 to10 intsances. (all these instances ran with in 1 or 2 seconds).
    We are using Oracle 10G SOA suite.
    This error is getting in the Production environment.
    The error is as follows (took error from server log).
    Failed to handle dispatch message ... exception ORABPEL-05002
    Message handle error.
    An exception occurred while attempting to process the message "com.collaxa.cube.engine.dispatch.message.invoke.InvokeInstanceMessage"; the exception is: faultName: {{http://schemas.oracle.com/bpel/extension}bindingFault}
    messageType: {{http://schemas.oracle.com/bpel/extension}RuntimeFaultMessage}
    parts: {{summary=file:/sw/appaia/product/SOA/bpel/domains/default/tmp/.bpel_CurrencyExchangeListEbizJMSProducer_1.0_4ec528ec93a8a6ff0278fab9701dcc71.tmp/CurrencyExchangeListEbizJMSProducerV1.wsdl [ Produce_Message_ptt::Produce_Message(OutputParameters) ] - WSIF JCA Execute of operation 'Produce_Message' failed due to: Adapter Framework unable to create outbound JCA connection.
    file:/sw/appaia/product/SOA/bpel/domains/default/tmp/.bpel_CurrencyExchangeListEbizJMSProducer_1.0_4ec528ec93a8a6ff0278fab9701dcc71.tmp/CurrencyExchangeListEbizJMSProducerV1.wsdl [ Produce_Message_ptt::Produce_Message(OutputParameters) ] - : The Adapter Framework was unable to establish an outbound JCA connection due to the following issue: oracle.j2ee.connector.proxy.ProxyInterceptException: javax.resource.ResourceException: RollbackException: Transaction has been marked for rollback: null [Caused by: RollbackException: Transaction has been marked for rollback: null]
    ; nested exception is:
    ORABPEL-12511
    Adapter Framework unable to create outbound JCA connection.
    I tried the below JMS tunings with differnt combination, but no improvement.
                <property name="useJCAConnectionPool">true</property>
                <property name="maxSizeJCAConnectionPool">500</property>
                <property name="retryMaxCount">10</property>
                <property name="retryInterval">60</property>
    Please let me know if any other logs or any other information is required.
    Thanks,
    Pershad

    sorry, I forgot the below things which I tried to tune the JMS.
    <property name="retryMaxCount">10</property>
    <property name="retryInterval">60</property>
    <property name="useJCAConnectionPool">true</property>
    <property name="maxSizeJCAConnectionPool">500</property>
    Thanks.

Maybe you are looking for

  • How can i check if the lines are the same ?

    private bool displayed; private void PostMessage() for (int i = 0; i < ScrollLabel._lines.Length; i++) for (int x = 0; x < WordsList.words.Length; x++) if (ScrollLabel._lines[i].Contains(WordsList.words[x]) && !displayed) displayed = true; lineToPost

  • Update field to a specific time

    Hello, Is is possible to update a column from a table, when sysdate is equal to a select which returns a date? for example: i have a YEARS table, with 2 columns, start_date and end_date. periodically in this table are inserting years. when sysdate=st

  • E$ table to be created in STAGING Area

    Hello All, I have an interface that has Staging Area different from TARGET. I have created an ODI Constraint in the target table in my model. Currently, when I run the scenario, the E$ table is created in the target database. Because we are planning

  • Is there a way to adjust the orientation for camera videos

    How can I adjust the orientation from a video taken with the camera?

  • Get definition of an index from query in SQL Server

    Hi, I need to get definition of an index using query in SQL Server 2008 as we can get definition of a stored procedure using sp_helptext command. Thanks In advance, Jitesh