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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. ns1909

    Script to get hardware/Software configuration of Teradata System

    # xctl -nw It will list the current running dbs n pde version. # xctl -nw > hardware It will list the hardware information.
  2. ns1909

    Stored Proc failure erratic 3604 "Cannot insert a Null va

    Try using Coalesce function to avoid generation of NULL values - SELECT COALESCE (('axt'||TRIM(RANDOM( 10, 100)) || TRIM(RANDOM( 10,100 )) || TRIM(RANDOM( 10,100))||SUBSTR(DATE (FORMAT 'YYYYMMDD') ,5,2)||SUBSTR(DATE (FORMAT 'YYYYMMDD') ,7,2)),0) INTO :VarPasswd; INSERT INTO PwdFile( col1 )...
  3. ns1909

    How do i set the default odbc connection from 16 bit to 32

    What is the version of Teradata ODBC Driver are you using ? 16-bit drivers are quite old for Teradata and it could be possible for IBM also. Try getting 32-bit drivers.....
  4. ns1909

    Calling Stored Procedure on Teradata from VB

    Try this to call the procedure - .CommandText = "CALL testSP(5,""strout"")"
  5. ns1909

    how to declare and use a variable

    am assuming that u r trying to submit a stored procedure. u cannot perform SELECT in sp. u need to have SELECT INTO. Try referencing manual provided by Teradata. These manual are also available on www.ncr.com
  6. ns1909

    Stored procs problem

    Through PMON u can check if any sql is still executing. Check through show locks if any locks are there. Check through Qryman the progress of the session.
  7. ns1909

    Calling Stored Procedure on Teradata from VB

    am not very sure, but since the second parameter is Out, so u should specify an variable instead of value while calling the sp. did u try this option.
  8. ns1909

    UTF8 character set

    If the session character set is UTF8 then the client is telling Teradata that it wants to insert UTF8 characters. So it is necessary that the data sent to the database is of the UTF8 format. Need to convert in this case as the driver offers no translation to UTF8 character data to be finally...

Part and Inventory Search

Back
Top