Quantcast
Channel: Teradata Downloads - Tools
Viewing all 870 articles
Browse latest View live

String-genererated SQL-statment into BTEQ

$
0
0

Hi!
I have created a SQL-statement that is in a string.
Ex:
'insert into MetadataTable.TestTable ' !!
'sel ''' !! trim(substr(Col.databasename,1,3)) !! ''' as Environment, ''' !!

trim(T1322.Id) !! ''' as Id, ''' !!

trim(T1324.RId) !! ''' as RId, ''' !!

trim(substr(Col.databasename,4,20)) !! ''' as DatabaseName, ''' !!

trim(Col.tablename) !! ''' as TableName, ''' !!....etc etc.
As it is right now - I´m running it in SQL Assistent but my goal is to run it as a scheaduled batch job in Z/OS.
Can someone help out here - how to
1. Run the "genereate-sql-statment. Which will generate an outfil
2. Make it run the generate sql-statement in a new script/source the the outfile from step 1.
Brgds

Forums: 

Fastexport with MLOAD option

$
0
0

Hi,
Considering TD space, we planned to export the old data to dat file and when ever we required load it again. I am using below fexport script to export data with MLOAD option.
Script:
====
.logtable DB.logtable;
.logon xx/xxxxx/xxxxx;
.BEGIN EXPORT SESSIONS 20;
.EXPORT OUTFILE temp.dat
 MLSCRIPT ML_SCRIPT.mlds;
LOCKING ROW FOR ACCESS
SELECT * FROM DB.TABLE_NAME;
.END EXPORT;
.LOGOFF;
==========================
Observation:
====
> dat file data is not readable format (see sample data below).
=========================
04163311041
           ¹3   1130Ó$!
0 2916221161¹4   1130ÓL
02111211030Ï    Õ·1   1230Ó/
==========================
> Row count also not matching with table record count.
Can you please clarify for the below questions.
1. How to ensure exported dat file is correct upon successful completion of my job.
2. Can I load sample 100 records adding some condition in MLOAD script. If yes please let me know the option and where to change in the mload script.
Thank You.

Forums: 

What is best way to near real-time load 1800 tags per second from OSIsoft PI Historn into Teradata

$
0
0

My goal is to keep a rolling few days of the 1 second data in Teradata. 1800 PI tags per second = 180,00 measurements per minute. Loading as frequently as can. Without writing code, here's what I see are my PI options:
1.  PI OLEDB Enterprise Connector with the Teradata OLEDB provider and setting up jobs on Teradata every few minutes to pull in the data
2. PI Web Services and the Teradata XML adapter
Want to leverage Teradata FASTLOAD capabilities as well. Appreciate your thoughts.
Thanks!

Tags: 
Forums: 

Fastload using Java API fails with \t delimiter

$
0
0

Hi All,
              I am working on a code to export data from a file to Teradata. For this I am using Fastload Java API.
              I am facing an issue when I try to use tab as the delimiter. 
              The url which I am using to create a fastload jdbc connection is as below:
              FASTLOAD_JDBC_URL=jdbc:teradata://myserver/FIELD_SEP=\\u0009,TMODE=ANSI,CHARSET=UTF8,TYPE=FASTLOADCSV
               I am getting the following error:
              SQL State = HY000, Error Code = 1399
java.sql.SQLException: [Teradata JDBC Driver] [TeraJDBC 15.00.00.20] [Error 1399] [SQLState HY000] FIELD_SEP connection parameter value \t is not valid because it is more than 1 byte long
           Can anybody tell me how we can resolve this. 
 Thanks & Regards
Shekhar

Forums: 

DSA logs

$
0
0

Hi,
I ran a restore using DSA, and received an error in the postscript.  Where can I find the DSA logs so that I can further investigate my error?  I'm guessing it's on the BAR media server, but I need the directory path.
 
Thanks!

Forums: 

SQL Assistant 13.11.0.05

$
0
0

Switched to SQL Assistant DB version 10.00.0714, ODBC 13.10.00.07
History not available but more importantly - whenever I export a dataset to my hard-drive it somehow exports it as a hidden file and no matter what I do I can't get it to show up.
When I go to run it again, in the export dialogue box the export DOES show but NOT if using windows explorer.

Forums: 

TPT19134 - Only happens after the 7th run of the same file.

$
0
0

Hi All,
 
We're using TPT to load a flat file.  It loads the file just fine 6 times.  However, on the 7th run, we get the following error:  FILE_READER: TPT19134 !ERROR! Fatal data error processing file '/informatica/powercenter/infa_shared/SrcFiles/Shared/PRE/MB/Prepped/PROD.MB.DATA.MB423.CSR.EXTRACT.H0'. Delimited Data Parsing error: Column length overflow(s) in row 2.,,,,,,301085,-1,6873032
I know there was a reported problem in a prior release of TPT, but we're running Teradata Parallel Transporter Version 14.10.00.07, which is supposed to have the fix in it.
 
Any thoughts or suggestions would be much appreciated!
 
Thanks!
Larry

Forums: 

Teradata Fastload not working for any other delimiter

$
0
0

Hi All,
             I am facing an issue with the Teradata fastload java code. The code worked perfectly fine for |,comma and ; as delimiters but today when I tried the same I am getting exceptions like:

 SQL State = HY000, Error Code = 1390

java.sql.SQLException: [Teradata JDBC Driver] [TeraJDBC 15.00.00.20] [Error 1390] [SQLState HY000] FastLoad CSV failed because InputStream row 1 contains 2 column value(s), instead of the expected 1 column value(s).

        at com.teradata.jdbc.jdbc_4.util.ErrorFactory.makeDriverJDBCException(ErrorFactory.java:94)

        at com.teradata.jdbc.jdbc_4.util.ErrorFactory.makeDriverJDBCException(ErrorFactory.java:79)

        at com.teradata.jdbc.jdbc_4.util.ErrorFactory.makeDriverJDBCException(ErrorFactory.java:106)

        at com.teradata.jdbc.jdbc.fastload.FastLoadCSVPreparedStatement.executeUpdate(FastLoadCSVPreparedStatement.java:1237)

 

The same exception I am getting for all other delimiters except for comma delimiter.

 

sample data file is as below:

 

shekhar|32

andrew|28

Paul|37

...

 

Same data is use for ; as delimiter as well. 

 

I have not made any changes to the current code. Can any one help me understand why we get this exceptions?

 

Regards

Shekhar

Forums: 

FASTEXPORT with MLSCRIPT option

$
0
0

I have exported 809GB data to data file using fast export with MLSCRIPT option sucessfully. I imported to table again using ml script which is generated by fast export script. I did the row count validation, found 1 record mismatch.
fastexport script:
=========================
.logtable db.log;
.logon xxx/xxxx,xxx;
.BEGIN EXPORT ;
.EXPORT OUTFILE test.dat
 MLSCRIPT test_exp.mlds;
SELECT * FROM DB.TABLE;
.END EXPORT;
.LOGOFF;
======================
Note: In export log row count is correct. In import log " Candidate records considered: 132131233" (count is 1 less). NO records are inserted in error tables.
May I know the possilbe reason.
Thanks in advance.
Regards,
Gnana Reddy.

Forums: 

Teradata TPT 14.10.00.05 with SAP Data services 4.2

$
0
0

Hello Folks, I see this issue with TPT 14.10.00.05 on the 13.10.04.04 TD database running with a BODS 4.2 version. 
I recently upgraded ALL the TTUs to 14.10 as we are upgrading the DB to 14.10. DB upgrade not done yet. So, I am using 14.10 TTUs on a 13.10 database. After I upgraded my tools on the SAP data services server. I found the below issue: I am not too much worried about the warnings, But the Job failes with the message " Named pipe error occurred: <The system cannot find the file specified"

(14.2) 04-14-15 22:43:54 (W) (3908:0176) DBS-120828: |Data flow DF_OM_CHD_CH011_MST1|Loader Query_PS_OM_CHD_CH011

Teradata returned with the following warning: <file_opt: TPT19003 NotifyMethod: 'None (default)'
file_opt: TPT19003 NotifyMethod: 'None (default)'
file_opt: TPT19003 ECI operator ID: 'file_opt-1964'
file_opt: TPT19003 ECI operator ID: 'file_opt-640'
Job start: Tue Apr 14 22:43:18 2015
Job end: Tue Apr 14 22:43:47 2015
>
(14.2) 04-14-15 22:48:10 (W) (3424:4048) DBS-120828: |Data flow DF_OM_CHD_011_MST2|Loader Query_PS_OM_CHD_CH011
Teradata returned with the following warning: <file_opt: TPT19003 NotifyMethod: 'None (default)'
file_opt: TPT19003 NotifyMethod: 'None (default)'
file_opt: TPT19003 ECI operator ID: 'file_opt-2828'
file_opt: TPT19003 ECI operator ID: 'file_opt-1968'
Job start: Tue Apr 14 22:44:07 2015
Job end: Tue Apr 14 22:48:03 2015
>
(14.2) 04-14-15 22:48:42 (E) (3436:3952) FIL-080134: |Data flow DF_OM_CHD_011_MST3|Loader Query_PS_OM_CHD_CH011
Named pipe error occurred: <The system cannot find the file specified.
>
(14.2) 04-14-15 22:48:43 (E) (3436:3640) FIL-080134: |Data flow DF_OM_CHD_011_MST3|Loader Loader1 for table 'Query_PS_OM_CHD_CH011'
Named pipe error occurred: <The system cannot find the file specified.
>
(14.2) 04-14-15 22:48:43 (E) (3436:3640) DBS-120804: |Data flow DF_OM_CHD_011_MST3|Loader Loader1 for table 'Query_PS_OM_CHD_CH011'
Cannot find log file that matches <*out>.
(14.2) 04-14-15 22:48:43 (E) (3436:3640) DBS-120804: |Data flow DF_OM_CHD_011_MST3|Loader Loader1 for table 'Query_PS_OM_CHD_CH011'
Cannot find log file that matches <*job>.
(14.2) 04-14-15 22:48:43 (3436:3952) CON-120828: (14.2) 04-14-15 22:48:43 (3436:3952) CON-120805: (14.2) 04-14-15 22:48:43 (3436:3952) CON-120805: |Data flow DF_OM_CHD_011_MST3|Loader Query_PS_OM_CHD_CH011
(14.2) 04-14-15 22:49:06 (E) (2228:2428) RUN-050316: |Session JOB_STG_OM_CHD_CH011
Error in JOB_STG_OM_CHD_CH011
(14.2) 04-14-15 22:49:06 (E) (2228:2428) RUN-050304: |Session JOB_STG_OM_CHD_CH011
Function call <raise_exception ( Error in JOB_STG_OM_CHD_CH011 ) > failed, due to error <50316>: <Error in
JOB_STG_OM_CHD_CH011>.
(14.2) 04-14-15 22:49:06 (E) (2228:2428) RUN-050316: |Session JOB_STG_OM_CHD_CH011
Error in JOB_STG_OM_CHD_CH011

Forums: 

Calling tbuild.exe directly via command prompt (Windows)

$
0
0

Hello:

 

Sorry. I had posted this earlier, but I accidently unpublished it while looking at it.

 

We would like to be able to call tbuild.exe directly in a batch file. Is this possible or would it be easier to try to just call tbuild and set everything up via the system environement variables? Using TTU 14.10 and we have both 32-bit and 64-bit installed.

 

cmd /k "C:\Program Files (x86)\Teradata\Client\14.10\Teradata Parallel Transporter\bin\tbuild.exe"

 

Give us a an error with regards to tbuildexe.exee not existing.

 

Any help you could provide on how to set this up would be appreciated.  Thank you!

Forums: 

FEXP exporting Unicode data with Timestamp/DATE columns

$
0
0

Hi Experts
I need to export some data (not a lot) from Teradata using Fast export. The table I am trying to export has columns with multi-byte data (unicode, Latin, Japanese) etc. This table also has a timestamp column which is NOT NULL. When I use the -i , -u, -c flags with FEXP and try to CAST the timestamp column as CHAR(26) , I get an error and no data file is generated. If I don't use the CAST function on the timestamp column then I get an 'Invalid operation on ANSI Timestamp or Date column' error.
 
The SQL I am trying to use is very simple e.g.
I have tried export FORMAT BINARY and FORMAT UNFORMAT.
Select ID||'|'||
          TRIM(NAME)||'|'||
          TRIM(ADDRESS)||'|'||
          CREATED_TS ||'|'||
     FROM CUSTOMERS
 
If I use the CAST() on CREATED_AS as CAST(CREATED_TS AS CHAR(26), the script fails and no data file is produced. And if I don't include a CAST function then I get an 'Invalid operation on a ANSI timestamp/date column error'.
 
Any ideas/pointers on how I can resolve this?

Thanks much
 
 
 

Forums: 

getting an error count from bteq and unix ksh

$
0
0

I have a big ksh script where I have created a bteq function thats looks like this:
 

td_query () { bteq << EOF |grep '^>' |sed -e "s/^>//" 
$(cat $HOME/.tdlogon)
	DATABASE mycontainer;
	 .set width 1000;
	  .set titledashes off;
	$1
.LOGOFF;
.QUIT;
.EXIT
EOF
}

I pass query into the function like this:
 

td_query "sel * from table ;"

 
now, if there is a query error, how can I capture that error to an error count variable? is that possible?

Forums: 

TD Studio 15.10 no driver or connection details

$
0
0

Installed TD Studio 15.10 and am trying to create a new Connection Profile.  I select Teradata database and then move tto the "Specify a Driver and Connection Details" page, but it's blank.  I unfortunately can't attach a screenshot, but the dialog box is just completely empty so I can't specify a driver or any connection details.  I had Studio 15.0 installed prior to this and had no issues, I uninstalled 15.10 and reinstalled 15.0 and had no issues, just seems like 15.10 can't find any JDBC drivers?

Forums: 

TPT Data Connector Error reading JSON

$
0
0

Dears, 
I have been unable to read JSON data from a flat file into Teradata v15. Here is my setup.

DEFINE JOB LOADING_JSON_DATA
DESCRIPTION 'LOAD JSON STREAMS INTO TERADATA'
(

  DEFINE SCHEMA SCHEMA_myJSONfile
  DESCRIPTION 'JSON file SCHEMA'
  (
    DATA_JSON  JSON(32000)
  );

  APPLY ('INSERT INTO D1_STG_WEB.FRESH_JSON ( 

           :DATA_JSON

           );'
         )
  TO OPERATOR ( $INSERTER() [@InserterInstances] )
  SELECT * FROM OPERATOR ( 

            $FILE_READER (SCHEMA_myJSONfile) [@ReaderInstances]   ATTR (

                 DirectoryPath = @SourceDirectoryPath,
                 FileName      = 'myRecords.json'

            )
  );
);

myRecords.json file contents:  (4 JSON documents each terminated by a new line character. Thus 1 JSON doc per line. First attribute of each JSON doc is "_id")

{"_id":{"$oid":"55356fc311e44d684430c78b"},"aperture":"4.5","camera":"NIKON D200","category":14,"collections_count":0,"comments_count":0,"converted":27,"converted_bits":27,"created_at":"2015-04-20T17:28:25-04:00","crop_version":7,"current_page":1,"description":null,"favorites_count":0,"feature":"fresh_today","focal_length":"50","for_sale":false,"for_sale_date":null,"height":1213,"hi_res_uploaded":0,"highest_rating":0,"highest_rating_date":null,"id":105825555,"image_format":"jpeg","image_url":"https://drscdn.500px.org/photo/105825555/m%3D2048_k%3D1_a%3D1/f85af69de86bd7344a0e79f9b3715eac","images":[{"format":"jpeg","https_url":"https://drscdn.500px.org/photo/105825555/m%3D2048_k%3D1_a%3D1/f85af69de86bd7344a0e79f9b3715eac","size":2048,"url":"https://drscdn.500px.org/photo/105825555/m%3D2048_k%3D1_a%3D1/f85af69de86bd7344a0e79f9b3715eac"}],"iso":"200","latitude":null,"lens":null,"license_requests_enabled":true,"license_type":0,"location":null,"longitude":null,"name":"Cornrows // B","nsfw":false,"positive_votes_count":0,"privacy":false,"rating":0,"record_ts":"2015-04-20T21:29:39+00:00","request_to_buy_enabled":true,"sales_count":0,"shutter_speed":"1/250","status":1,"store_download":false,"store_license":false,"store_print":false,"tags":["blanco y negro","cornrows","d200","moda","strobist"],"taken_at":"2015-04-18T20:52:11-04:00","times_viewed":0,"url":"/photo/105825555/cornrows-b-by-andr%C3%A9s-nigro","user":{"affection":550,"city":"santiago","country":"Chile","firstname":"AndRéS","fullname":"AndRéS NiGro","id":4396964,"lastname":"NiGro","store_on":true,"upgrade_status":0,"username":"nigr0","userpic_https_url":"https://pacdn.500px.org/4396964/875d8e594c1d2a2157c3e613f54fe4a4ce7126b3/1.jpg?1","userpic_url":"https://pacdn.500px.org/4396964/875d8e594c1d2a2157c3e613f54fe4a4ce7126b3/1.jpg?1","usertype":0},"user_id":4396964,"votes_count":0,"width":812}
{"_id":{"$oid":"55356fc311e44d684430c78c"},"aperture":"2.0","camera":"T00J","category":8,"collections_count":0,"comments_count":0,"converted":27,"converted_bits":27,"created_at":"2015-04-20T17:28:15-04:00","crop_version":5,"current_page":1,"description":"Jpeg","favorites_count":0,"feature":"fresh_today","focal_length":"2","for_sale":false,"for_sale_date":null,"height":3264,"hi_res_uploaded":0,"highest_rating":20.7,"highest_rating_date":"2015-04-20T17:29:10-04:00","id":105825543,"image_format":"jpeg","image_url":"https://drscdn.500px.org/photo/105825543/m%3D2048_k%3D1_a%3D1/287051c7f8b4118a276949b870b3dad0","images":[{"format":"jpeg","https_url":"https://drscdn.500px.org/photo/105825543/m%3D2048_k%3D1_a%3D1/287051c7f8b4118a276949b870b3dad0","size":2048,"url":"https://drscdn.500px.org/photo/105825543/m%3D2048_k%3D1_a%3D1/287051c7f8b4118a276949b870b3dad0"}],"iso":"50","latitude":null,"lens":null,"license_requests_enabled":true,"license_type":0,"location":null,"longitude":null,"name":"Cherry Blossom","nsfw":false,"positive_votes_count":1,"privacy":false,"rating":20.7,"record_ts":"2015-04-20T21:29:39+00:00","request_to_buy_enabled":true,"sales_count":0,"shutter_speed":"1/500","status":1,"store_download":false,"store_license":false,"store_print":false,"tags":["Cherry","Flowers","Trees","blossom","spring"],"taken_at":"2015-03-23T07:56:54-04:00","times_viewed":1,"url":"/photo/105825543/cherry-blossom-by-eleonora-miani","user":{"affection":179,"city":"Venice","country":"","firstname":"Eleonora","fullname":"Eleonora Miani","id":10199673,"lastname":"Miani","store_on":true,"upgrade_status":0,"username":"mianieleonora","userpic_https_url":"https://pacdn.500px.org/10199673/3d58ea6208749cde295b482c701e5d74b9d1ffbb/1.jpg?1","userpic_url":"https://pacdn.500px.org/10199673/3d58ea6208749cde295b482c701e5d74b9d1ffbb/1.jpg?1","usertype":0},"user_id":10199673,"votes_count":1,"width":2448}
{"_id":{"$oid":"55356fc311e44d684430c78d"},"aperture":"22.0","camera":"Canon EOS 650D","category":12,"collections_count":0,"comments_count":0,"converted":27,"converted_bits":27,"created_at":"2015-04-20T17:28:10-04:00","crop_version":9,"current_page":1,"description":null,"favorites_count":0,"feature":"fresh_today","focal_length":"125","for_sale":false,"for_sale_date":null,"height":1000,"hi_res_uploaded":0,"highest_rating":16.5,"highest_rating_date":"2015-04-20T17:29:27-04:00","id":105825539,"image_format":"jpeg","image_url":"https://drscdn.500px.org/photo/105825539/m%3D2048_k%3D1_a%3D1/9bbdee310296ff64baa814465cfa0749","images":[{"format":"jpeg","https_url":"https://drscdn.500px.org/photo/105825539/m%3D2048_k%3D1_a%3D1/9bbdee310296ff64baa814465cfa0749","size":2048,"url":"https://drscdn.500px.org/photo/105825539/m%3D2048_k%3D1_a%3D1/9bbdee310296ff64baa814465cfa0749"}],"iso":"100","latitude":null,"lens":null,"license_requests_enabled":false,"license_type":0,"location":null,"longitude":null,"name":"Еще о весне","nsfw":false,"positive_votes_count":1,"privacy":false,"rating":16.5,"record_ts":"2015-04-20T21:29:39+00:00","request_to_buy_enabled":true,"sales_count":0,"shutter_speed":"1/160","status":1,"store_download":false,"store_license":false,"store_print":false,"tags":["вода","капли","лед"],"taken_at":"2015-04-20T20:32:28-04:00","times_viewed":4,"url":"/photo/105825539/%D0%95%D1%89%D0%B5-%D0%BE-%D0%B2%D0%B5%D1%81%D0%BD%D0%B5-by-%D0%A1%D0%B5%D1%80%D0%B3%D0%B5%D0%B9-%D0%95%D1%80%D0%B5%D0%BC%D0%B8%D0%BD","user":{"affection":888,"city":"Saint Petersburg, Russia","country":"Россия","firstname":"Сергей","fullname":"Сергей Еремин","id":11353945,"lastname":"Еремин","store_on":false,"upgrade_status":0,"username":"bw1zmgl05q","userpic_https_url":"https://graph.facebook.com/100001805523713/picture?height=100\u0026width=100","userpic_url":"https://graph.facebook.com/100001805523713/picture?height=100\u0026width=100","usertype":0},"user_id":11353945,"votes_count":1,"width":660}
{"_id":{"$oid":"55356fc311e44d684430c78e"},"aperture":"3.5","camera":"NIKON D600","category":7,"collections_count":0,"comments_count":0,"converted":27,"converted_bits":27,"created_at":"2015-04-20T17:28:03-04:00","crop_version":9,"current_page":1,"description":"Cold Time","favorites_count":0,"feature":"fresh_today","focal_length":"105","for_sale":false,"for_sale_date":null,"height":2200,"hi_res_uploaded":0,"highest_rating":0,"highest_rating_date":null,"id":105825535,"image_format":"jpeg","image_url":"https://drscdn.500px.org/photo/105825535/m%3D2048_k%3D1_a%3D1/2ac451b15496ae298eb780778ad3d595","images":[{"format":"jpeg","https_url":"https://drscdn.500px.org/photo/105825535/m%3D2048_k%3D1_a%3D1/2ac451b15496ae298eb780778ad3d595","size":2048,"url":"https://drscdn.500px.org/photo/105825535/m%3D2048_k%3D1_a%3D1/2ac451b15496ae298eb780778ad3d595"}],"iso":"100","latitude":null,"lens":null,"license_requests_enabled":true,"license_type":0,"location":null,"longitude":null,"name":"Cold Time","nsfw":false,"positive_votes_count":0,"privacy":false,"rating":0,"record_ts":"2015-04-20T21:29:39+00:00","request_to_buy_enabled":true,"sales_count":0,"shutter_speed":"1/200","status":1,"store_download":false,"store_license":false,"store_print":false,"tags":["Nikon","chromik","dchro","germany","b\u0026w","face","gesichter","man","mann","nikon d600","portrait","portrait-art","portraits","sw","visage"],"taken_at":null,"times_viewed":0,"url":"/photo/105825535/cold-time-by-dietmar-chromik","user":{"affection":10115,"city":"Moenchengladbach","country":"Germany","firstname":"dietmar","fullname":"dietmar Chromik","id":538649,"lastname":"Chromik","store_on":true,"upgrade_status":0,"username":"chromik","userpic_https_url":"https://pacdn.500px.org/538649/a65ce68bccaddf8d9d98bb0381b183ee36014f16/1.jpg?3","userpic_url":"https://pacdn.500px.org/538649/a65ce68bccaddf8d9d98bb0381b183ee36014f16/1.jpg?3","usertype":0},"user_id":538649,"votes_count":0,"width":1760}

 
Here is the table in Teradata v15 that I am trying to load this data into 

 

CREATE SET TABLE D1_STG_WEB.FRESH_JSON ,NO FALLBACK ,
     NO BEFORE JOURNAL,
     NO AFTER JOURNAL,
     CHECKSUM = DEFAULT,
     DEFAULT MERGEBLOCKRATIO
     (
      DOC_ID BIGINT GENERATED BY DEFAULT AS IDENTITY
           (START WITH 1 
            INCREMENT BY 1 
            MINVALUE -99999999999999999 
            MAXVALUE 99999999999999999 
            NO CYCLE),
      DATA_JSON JSON(8388096) CHARACTER SET UNICODE COMPRESS USING TD_SYSFNLIB.JSON_COMPRESS DECOMPRESS USING TD_SYSFNLIB.JSON_DECOMPRESS )
UNIQUE PRIMARY INDEX ( DOC_ID );

SourceFormat is set to "unformatted".  Using Data Connector Producer operator to read the file and sending it to Selector operator for inserting into TD. 

However, I get this error all the time. 

$INSERTER: TPT10508: RDBMS error 3812: The positional assignment list has too few values.

Can anyone point out the issue here ? Any help / pointers would be much appriciated. 

Forums: 

Is Fast Import/Export available on OSX?

TTU 14.10 Silent_uninstall return code

$
0
0

Hi,
I need to automate the installation of TTU 14.10 with silent_install.bat, but i can not capture the return code.
Where the status code of the installation is ?

Regards.

Forums: 

SQL Assistant 15 file path (on Windows 7)

$
0
0

Hi all,
I'm new to Assistant 15 and tried to use the new feature of Keyboard Macros, but can not find where the Keyboard Macros are stored. Can anyone please point to me where the files are? My computer is Windows 7. Thanks heaps!
Regards,
auato
 

Forums: 

PMon won't start

$
0
0

Hi, anyone came across this problem? Anytime I try to launch Pmon, I get the following message: "Unable to load support file. Program ending." The uninstall script gives me yet another error, so I cannot even remove and install anew. The error message says "Permission denied" ... When using the TTU 13 installation file, I get the message that CLIv2 13 or higher is not installed, which is not true, it is. I tried to reinstall TTU 15, no success. Please advise, as customer does not allow TD staff to use ViewPoint, and I am now blind to my execution plans. Which is a major pain you-know-where.

Forums: 

Select query from Teradata to BD MS Access

$
0
0

Hi, I have a database in MS Access multiple tables. I wish I could do select query from Teradata without loading the data into a Teradata database, do you know if it is possible and with that tool? thanks

Forums: 
Viewing all 870 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>