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 Chriss Miller 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. BillDHS

    Rank command

    I am always amazed from this same type questions coming up frequently at organizations that provide software without access to tech docs that most likely is available through Vendor support links. Here is online tech docs w/search: http://www.info.ncr.com/Gen-Srch/eOnLine-Srch.cfm Here is...
  2. BillDHS

    Date Format for Import to Access

    Access does have a current_date function, DATE(). The following was put in the Criteria Row of the query design wizard: >=Date()-30.
  3. BillDHS

    Date Format for Import to Access

    Use the current date and subtract 1, you don't need a parameterized query: Select * from Tab1 Where Tab1.datecol = Current_date - 1;
  4. BillDHS

    Creating a column in a view

    This works fine for me: select 'Help me' as Column_B; RESULTS: Column_B Help me Where is your FROM clause for the source of COULMN_A? What is the error?
  5. BillDHS

    Teradata OLEDB 1.2.04 failure

    If you updated rather than remove/install, you may want to do try a new installation after removing the current version first.
  6. BillDHS

    Performance

    You need to be much more specific. Always the same time? Always the same table? What else is accessing TD during the load? Empty table or append? Where is the data coming from? LAN/WAN traffic?
  7. BillDHS

    Available User Space

    We are considering an Oracle 10g RAC configuration for a data warehouse. In order to determine the appropriate size, I need to know the amount of admin and temp space to reserve as system resources. For example in a 10 terabyte data warehouse, RAID 1 would take 5 TB, how much space would...
  8. BillDHS

    date runction

    Unless something has change, ODBC does not accept format statements. If you are using ODBC connectivity you will also need to CAST the date to maintain the format: select CAST(current_date (format'yyyy-mmm-dd')as char(11));
  9. BillDHS

    BOEXI Session Management

    First I want to inform you that I am the Warehouse Administrator and not the BOEXI Administrator. There are some anomolies when running reports against Teradata through ODBC and I would like to have your insite. When running a report using a web browser and BOEXI as the server, it will open a...
  10. BillDHS

    Loading flat files to Teradata

    Your question is very vague, but if the poulation identifier is an element of the input file, I don't know why you would have to do the work over.
  11. BillDHS

    Amps and Vprocs

    AMPs are a type of VPROC, the other being a PE (parsing engine). VPROCs, AMPs and PEs are all virtual, created by software. PE do the query parsing and session control, AMP perform the query steps.
  12. BillDHS

    Need to find a maximum or minimum value?

    You could union the values of the columns, then select the max value, then go back and retrieve the base row. Whether this is quick or easy remains to be seen. select t3.key, t3.cola, t3.colb, t3.colc,... from tablea t3, (select max(t1.value) from (Select colavalue from...
  13. BillDHS

    Reg Expr searches is really slow!

    Unless Datbasename is a varchar field I don't think you need the TRIM function. If that is true removing it should help the speed.
  14. BillDHS

    how to insert a text file or a picture in a cloumn

    Search the Teradata Forum at http://www.teradataforum.com/index.htm
  15. BillDHS

    how to insert a text file or a picture in a cloumn

    What have you tried so far? Why isn't it just a VARCHAR attribute?
  16. BillDHS

    Wild Cards question.

    If I remember correctly it is the backslash \.
  17. BillDHS

    Connection Reset By peer

    A couple thoughts: Look at the DBC logon logoff table to see if Teradata is doing the abort, or is it a network/operating system abort. I have Teradata Manager set to Logoff idle sessions after 4 hours. Are these sessions setting idle for long periods?
  18. BillDHS

    Integer to Number

    I am assuming you used an ODBC connection for your select statement which won't apply a format statement. CAST to character after format Select CAST((abc (format '9(10)')) as CHAR(10)) from A
  19. BillDHS

    Can i load data into a teradata table directly from an oracle table

    The Oracle to Teradata Gateway will allow you to identify Teradata as an Oracle instance and do insert statements. It sits on top of Teradata ODBC, and is very slow.
  20. BillDHS

    REBUILD Utility Cannot be run on a non-AMP vproc

    I don't know if I can help much. Instead of creating an AMP VPROC, you created a PE VPROC. The documnetation might give you a clue on dropping it and creating an AMP

Part and Inventory Search

Back
Top