• 16-11-2014, 12:29:42
    #1
    Üyeliği durduruldu
    [SQL]select * into dumpfile
    from dual 'C:WWW\site.com\file.php'
    from userform
    [Err] ORA-00933: SQL command not properly ended


    ben böyle denedim ama hata aldım sqlim oracle oldugu için çok bilmiyorum mysqlde bu tarz kullanılıyordu yardım edermisiiniz arkadaslar.

    --R10.NET; Flood Engellendi -->-> Yeni yazılan mesaj 12:29:42 -->-> Daha önceki mesaj 12:00:24 --

    SELECT *
    INTO dumpfile
    FROM filetables
    WHERE field = 'C:WWW\site.com\file.php';

    böyle denedim

    [Err] ORA-00904: "FIELD": invalid identifier –

    bunu verdi
  • 10-03-2015, 18:35:58
    #2
    Bunun yerine:
    WHERE field = 'C:WWW\site.com\file.php';

    Bunu kullanabilirsin:
    WHERE field = to_char('C:WWW\site.com\file.php');


    Ona uygun olan hata aciklamasi:

    Alıntı
    ORA-00904 string: invalid identifier
    Cause: The column name entered is either missing or invalid.

    Action: Enter a valid column name. A valid column name must begin with a letter, be less than or equal to 30 characters, and consist of only alphanumeric characters and the special characters $, _, and #. If it contains other characters, then it must be enclosed in double quotation marks. It may not be a reserved word.