Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by hilbrink

  1. hilbrink

    Cast

    The situation is that we have an application that runs on different database servers such as Oracle, SQL Server, Interbase. In order to communicate with these databases we use SQL. First standard SQL and translate this to the SQL dialect that is needed. Our standard SQL includes the cast...
  2. hilbrink

    Cast

    I'm using 8.0.6
  3. hilbrink

    Cast

    What is wrong with the following: select cast(sysdate as varchar2(20)) from dual; Te error message i get is: select cast(sysdate as varchar2(20)) from dual * ORA-00905: missing keyword ?? please help (What i try to do is to cast several things (the above is just an...
  4. hilbrink

    Dual in Interbase

    i believe there is no such thing.... :-(
  5. hilbrink

    Not a Valid Export File

    When exporting, the default values for certain parameters are operating-system specific. Specifically, the BUFFER parameter defaults to a value of 4K under Windows NT and the RECORDLENGTH parameter defaults to 2K. I don't know what these parameter defaults are for Solaris. But perhaps this has...
  6. hilbrink

    oracle, sybase,mysql?

    You can compare some databases at: http://www.mysql.com/information/crash-me.php maybe that can help you giving insight in the possibilities of the different databases.
  7. hilbrink

    Help: Interbase 6 and BDE

    What error(s) do you get?
  8. hilbrink

    Help: Interbase 6 and BDE

    Do you get an error message? (-:
  9. hilbrink

    Why this query is empty? It have

    Is the parameter a string? Looks like an integer to me, perhaps you should try using: query1.params[0].asInteger := 001; Hope this helps ::-)
  10. hilbrink

    Building MDX query

    What exactly are you trying to accomplish in the where-clause? And what do you mean with "clauses from the same dimension"? The WHERE clause is a filter that defines the conditions each row in the source tables must meet to qualify for the SELECT. Example: SELECT ...... FROM...
  11. hilbrink

    passing procedure as parameter

    Hello, Can anybody tell me how to execute a procedure that you pass as a parameter? I have: type DBproc = procedure(); procedure DBUpdateProcedure(a_procedure: DBproc); begin {statements} a_procedure; end; procedure proc_a(); begin {statements} end; Then I would like to execute...
  12. hilbrink

    Can I store Rich Text Data Vaules in oracle ? *** Urgent***

    Have you considered using the datatype BLOB (binary large object)?
  13. hilbrink

    SQL server table not responding !!

    perhaps there is procedure thant constantly updates that table or some other process that does something with the table and never ands... check for infinite loops
  14. hilbrink

    how do you create unique

    Try to make use of the uniqueidentifier datatype and NEWID function: create table test( ID uniqueidentifier NOT NULL default NEWID(), ...
  15. hilbrink

    Moving database

    Have you tried export/import?

Part and Inventory Search

Back
Top