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

Teradata SQL Assistant - Multiple Answer Window Tiles Merge

$
0
0

I am using SQL Assistant 14.10.0.02, and i want to change settings for multiple answerset. Currently its opening in multiple tiles, making 4 tiles - 1 for Query,1 for History and 2 for Answerset(more depend on queries). How can we merge Answer set in one tile with multiple Tabs, the way multiple Query window works. Please guide.
To get multiple answerset - i have changed the settings 
Tools>option>query > Close Answerset windows before submitting a new query [checked]
still issue is up and its opening in multiple tiles and making my query windows small.
 

Forums: 

How to archive in ARCmain.

$
0
0

Hi,
I am new to arcmain. i have witten a simple archive arcmain script but now i have following requirement while archiving a teradata database:
·         How to archive file to particular location (e.g C:\user\backup)
·         How to divide archive file into chunks (like 100mb per file)
·         How to apply compression on archive file
Following is my simple arcmain script:

arcmain SESSIONS=8 OUTLOG=ARCALL.OUT

logon ip/db,pswd;

ARCHIVE DATA TABLE (db.table),(db.table2), RELEASE LOCK, FILE= ARCHIVE;

logoff;

 
Thanks in advance

Tags: 
Forums: 

Why USEXVIEWS=ON parameter has no effect on Teradata Studio ?

$
0
0

We cannot replace Teradata SQL Assistant and Teradata Administrator by Teradata Studio because the USEXVIEWS parameter has no effect on Teradata Studio.

When I configure USEXVIEWS=ON in the JDBC Connections properties, Teradata Studio continues to display all databases even databases on which my user is
not granted. It's a serious problem for us and I cannot deploy Teradata Studio to developpers for this reason.

I can explain why Teradata Studio display all databases insteed of a list of limited databases.
It's because the X views are not used by Teradata Studio.

I can see that in dbqlogtbl log : when my user log in TD with Teradata Studio 15.10. The 2 first Sql submitted by Teradata Studio are on DBC.DATABASESV  and DBC.TableSizeV objects.
When USEXVIEWS=ON, Teradata Studio is supposed to access dbc.databasesvX and dbc.tablesvX but it's not the case here. Why ?

When my user is loggin to TD with Teradata SQL Assistant or with Winddi, the 2 first sql submitted by theses tools are : dbc.DatabasesVX and dbc.tablesvX.

So my 2 questions are  :
why Teradata Studio ignore the USEXVIEWS=ON parameter ?
What's is the workarround ?
 
Thanks to share your exepriences on this question.

Forums: 

TTU 15.00 (Windows) Installation Issue

$
0
0

Hi Team,
I am unable to install TTU15.00 (Windows) on my machine.
Getting Error message : "The Installation of shared ICU-32bit appears to have failed.Do you want to continue the Installtion?"
again the same message for  "The Installation of shared ICU-64bit appears to have failed.Do you want to continue the Installtion?"
This Error I am getting for all Utilities I have selected to install and at the end installation shows completed sucessfully but nothing showing in the system.
My Machine Confi. is like
Windows:7
System Type : 64 Bit
RAM : 2 GB
Processor: 2.67 GHz

Forums: 

BTEQ .SET RECORDMODE ON; in Unix creating illegible characters.

$
0
0

I am trying to export an SQL query from a table - this is in a standard query format i.e.
INSERT INTO DATABASE_A.TABLE_B
SELECT
COUNT(*)
FROM DATABASE_A.TABLE_A
WHERE TABLE_A.REF_1 = 0;
I then use bteq to export it in to a file so I can execute queries in order. I want to preserve the format of the query (as it can contain comments) however on export - the file is presented with: 
^D▒^D▒INSERT INTO DATABASE_A.TABLE_B
The code I am using to export is:

bteq <<-EOF

.LOGON ${LOGON};

DATABASE DATABASE_A;

.WIDTH 65531

.EXPORT DATA FILE=rw_test_sql.dat

.SET RECORDMODE ON;

.RETLIMIT 2147483407,2048;

        .SET SEPARATOR 0;

        .SET NULL AS '';

.SET SESSION CHARSET 'UTF8';

.set titledashes off;

 

SELECT

REQUEST_TEXT

FROM DATABASE_A.TABLE_A;

 

.IF ERRORCODE <> 0 THEN .QUIT 8

.EXPORT RESET

.QUIT 0

EOF

 
I am using Solaris 10 on KSH. so my question to you is do you know what the cause of this is and how to resolve it?
.SET RECORDMODE OFF; does solve it however the SQL comes in its unformatted text causing it to fail with comments.

 

Forums: 

TPT 15.00 is loading NULL data

$
0
0

Hello,
We are using TPT 15.00.00.03 (LOAD operator) through informatica 9.6.1 hf2. It is giving weird behavior. It is loading first 5-6 columns correct data and all rest of columns in table as NULL. No error message.
If I run same job in other Teradata system where I have TPT 14.10.00.14 with same version of informatica (9.6.1 hf2), it is loading all data correctly.
Is there anybody noticing same issue? Is there any known issue with TPT/TTU 15.00?
Thank you.

Forums: 

Multiload + LDAP

$
0
0

All,
 
I am running muliload job. We have LDAP concept here. Our ID's are in sync with LDAP authentication.
When i am running my mulltiload job I am getting below error:(Also PFA attachment)
UTY1006 CLI error : 244, MTDP : EM_SSOLOGONFAIL(224): SSO logon failed by gateway.
Please help!!!
 
Thanks,
Tushar

Forums: 

TPT Export to a Data Connector question

$
0
0

I'm trying to setup a generic macro to generate TPT Exports that write to a DataConnector to generate delimited flat files.  The issue i'm running into is that the Export operator appears to have to have a schema defined since it is a producer.  The complicating issue is that most of the requests for this usage has to do with complex queries (joins, aggregations, case statements, and such in the query) and users/applications wanting to offload that data quickly in a delimited format.   If this was just a one table dump this would be pretty easy to build (actually i have that built already).  I could go back to using FastExport which I can make it do this via some sql trickery to force the delimiting of the data (basically concatenating the entire set of columns into a single column) and then just have to set it up so that the two bytes at the front could be removed via some other process.
So now to my question; is there a way to export data without a schema while using the Fastexport to DataConnector Consumer for the delimited flatfile so it can handle complex sql exports.   I want this to be flexible enough that it could work for a single table or for a complex query.  I have multiple macros to build TPT scripts to load data from delimited files, to move data between systems, etc.  However, this is the first time I have tried to use TPT to actually export complex sql data out to a delimited flat file.   From what I'm seeing; it does not appear to be easily doable due to the the fact that it requires a schema definition.  There are potential ways around this, but was hoping i could just ignore the schema since I'm not 100pct sure I understand the need for the schema for exporting data to a file, unless that is the only way the data connector operator knows how to delimit the data.  If that is the case, then this makes exporting complex SQL more difficult since there wouldn't be a quick and easy way to build the necessary schema from inside a macro.
Ultimately, i want to be able to provide macros to my developers who can then just pass in some variables and get a script that they can then use.  I have used this method for loading data and for building simple data movement scripts for getting data from production to dev/test for developers.  They plug in some parameters get a script and copy/paste and execute it.   So i would like to be able to do the same thing for exporting to a flat file, but its looking like it may be a bit more convoluted when dealing with the more complex sql logic most users which to be able to run.

Forums: 

Multiload failure

$
0
0

Script:

 

.LOGTABLE BKP.dwlogtable;

.logon 127.0.0.1/tduser,tduser;

 

.begin import mload tables BKP.customers1;

 

.layout custlayout;

.field ID * varchar(2);

.field NAME * varchar(6);

 

.dml label custdml;

insert into BKP.customers1 values(:ID,:NAME);

 

.import infile C:\mload_jobs\cust.txt

format vartext ','

layout custlayout

apply custdml;

 

.end mload;

.logoff;

 

O/P:

     ========================================================================

     =                                                                      =

     =          MultiLoad Utility    Release MLOD.13.00.00.005              =

     =          Platform WIN32                                              =

     =                                                                      =

     ========================================================================

     =                                                                      =

     =     Copyright 1990-2009 Teradata Corporation. ALL RIGHTS RESERVED.   =

     =                                                                      =

     ========================================================================

**** 07:06:53 UTY2411 Processing start date: THU JAN 28, 2016

     ========================================================================

     =                                                                      =

     =          Logon/Connection                                            =

     =                                                                      =

     ========================================================================

0001 .LOGTABLE BKP.dwlogtable;

0002 .logon 127.0.0.1/tduser,;

**** 07:06:53 UTY8400 Teradata Database Release: 13.00.00.12

**** 07:06:53 UTY8400 Teradata Database Version: 13.00.00.12

**** 07:06:53 UTY8400 Default character set: ASCII                         

**** 07:06:53 UTY8400 Current RDBMS has interval support

**** 07:06:53 UTY8400 Current RDBMS has UDT support

**** 07:06:53 UTY8400 Maximum supported buffer size: 1M

**** 07:06:53 UTY8400 Data Encryption supported by RDBMS server

**** 07:06:54 UTY6211 A successful connect was made to the RDBMS.

**** 07:06:54 UTY6217 Logtable 'BKP.dwlogtable' has been created.

     ========================================================================

     =                                                                      =

     =          Processing Control Statements                               =

     =                                                                      =

     ========================================================================

 

0003 .begin import mload tables BKP.customers1;

     ========================================================================

     =                                                                      =

     =          Processing MultiLoad Statements                             =

     =                                                                      =

     ========================================================================

 

0004 .layout custlayout;

0005 .field ID * varchar(2);

0006 .field NAME * varchar(6);

 

0007 .dml label custdml;

0008 insert into BKP.customers1 values(:ID,:NAME);

 

0009 .import infile C:\mload_jobs\cust.txt

     format vartext ','

     layout custlayout

     apply custdml;

 

0010 .end mload;

     ========================================================================

     =                                                                      =

     =          MultiLoad Initial Phase                                     =

     =                                                                      =

     ========================================================================

**** 07:06:54 UTY0829 Options in effect for this MultiLoad import task:

     .       Sessions:    One session per available amp.

     .       Checkpoint:  15 minute(s).

     .       Tenacity:    4 hour limit to successfully connect load sessions.

     .       Errlimit:    No limit in effect.

     .       AmpCheck:    In effect for apply phase transitions.

**** 07:06:54 UTY0817 MultiLoad submitting the following request:

     Select NULL from BKP.dwlogtable where (LogType = 125) and (Seq = 1) and

     (MloadSeq = 0);

**** 07:06:54 UTY0817 MultiLoad submitting the following request:

     Select NULL from BKP.dwlogtable where (LogType = 120) and (Seq = 1);

**** 07:06:54 UTY0815 MLOAD session(s) connected: 2.

**** 07:06:54 UTY0817 MultiLoad submitting the following request:

     BEGIN MLOAD BKP.customers1 WITH INTERVAL;

**** 07:06:54 UTY0805 RDBMS failure, 3807: Object 'BKP.customers1' does not exist.

     ========================================================================

     =                                                                      =

     =          Logoff/Disconnect                                           =

     =                                                                      =

     ========================================================================

**** 07:06:54 UTY6215 The restart log table has NOT been dropped.

**** 07:06:54 UTY6212 A successful disconnect was made from the RDBMS.

**** 07:06:54 UTY2410 Total processor time used = '0.265202 Seconds'

     .       Start : 07:06:53 - THU JAN 28, 2016

     .       End   : 07:06:54 - THU JAN 28, 2016

     .       Highest return code encountered = '12'.

 

 

Please help

Forums: 

Underflow and Overflow conditions for BTEQ

$
0
0

Hello All,
I'm trying to import a tab delimited file into a table.
Overflow condition = number of delimited values of record in import file > number of columns in table
 Behavior – BTEQ silently ignoring the overflow columns that are at the end of the record.
Underflow condition = number of delimited values of a record in import file < number of columns in table
 Behavior – returns Failure 2673.
Is there any BTEQ command that i can mention in load script so that BTEQ returns an error for overflown records as well?
Thanks, Ram.

Forums: 

TTU Installation Problem

$
0
0

I was just given a new laptop and I'm re-installing software to get everything back as I had it on the old machine.  I have Teradata-Studio working and I'm now trying to get the tools to load.  Running either the TTU_BASE or TTU_DBM, I get the same error message saying ICU-32 and ICU-64 fail during install.
This had installed painlessly on my old machine.  I'm looking for any clues about what I might have to tweak to get this to load. 
Any suggestions?

Forums: 

TDLOADER

$
0
0

Hi,
 
can we use tdloader to unload data to a file, if so can you please point me to some documentation.
 
Thanks for your time and help
HK
 

Forums: 

Very large table loading fails with Fastload, what are other possible solutions?

$
0
0

Dear Experts, 
I have a lrage table (about 200 Go) that I want to load in Teradata. Unfortunately, I am running on a Windows 32 bits machine and hence I get the following error while trying to load the file with the Fastload utility: "Empty file on read open". Is there any workaround with which I can load the file in one shot? Since the file is very big, splitting it to many chunks and loading each chunk with one piece of fastload script is just impossible... Can the TPT work with such a huge file? If yes, could you please give me a hint about how to write the fastload script using the TPT utility? 
Regards. 
 

Forums: 

Plugin for Eclipse

$
0
0

There appears to be a problem with the plugin for Eclipse when attempting any of the following:
-Creating a SQL Editor. So for example, right-click on an object and generate DDL.
-Creating a Teradata Project
 
I have provided as much detail as I could find. Any suggestions to resolving this error? Should I maybe install an older version of the Plug-In for Eclipse? Or an older version of Eclipse DTP?
 
 
My local environment:
-------------------------------------------------------------------------------------------------
TDExpress15.10.0.7_Sles11_40GB_vp
Eclipse Java EE IDE for Web Developers - Mars.1 Release (4.5.1) [Recommended in Teradata Studio, Studio Express, and Plug-in for Eclipse Installation Guide, Release 15.10]
DTP - 1.12 [Came standard with Mars]
EMF ECP SDK 3.x [Installed using the Teradata Studio, Studio Express, and Plug-in for Eclipse Installation Guide, Release 15.10]
Teradata Plug-in for Eclipse Version: 15.10.01.01.201601251638 [Installed using the Teradata Studio, Studio Express, and Plug-in for Eclipse Installation Guide, Release 15.10]
 
When I try and create a New Teradata Project, the following error is thrown:

-------------------------------------------------------------------------------------------------

The selected wizard could not be started.

Plug-in "com.teradata.datatools.teradataproject" was unable to instantiate class "com.teradata.datatools.teradataproject.wizards.TeradataProjectNewWizard".

com/teradata/datatools/dtp/sqltools/ui/TeradataSQLToolsUIPlugin

 

 

When I try and launch a SQL Editor, the following error is thrown:

-------------------------------------------------------------------------------------------------

Plug-in com.teradata.datatools.dtp.sqltools.ui was unable to load class com.teradata.datatools.dtp.sqltools.ui.editor.TeradataSQLEditor.

 

Full log details -->

 

 

org.eclipse.core.runtime.CoreException: Plug-in com.teradata.datatools.dtp.sqltools.ui was unable to load class com.teradata.datatools.dtp.sqltools.ui.editor.TeradataSQLEditor.

at org.eclipse.core.internal.registry.osgi.RegistryStrategyOSGI.throwException(RegistryStrategyOSGI.java:194)

at org.eclipse.core.internal.registry.osgi.RegistryStrategyOSGI.createExecutableExtension(RegistryStrategyOSGI.java:176)

at org.eclipse.core.internal.registry.ExtensionRegistry.createExecutableExtension(ExtensionRegistry.java:905)

at org.eclipse.core.internal.registry.ConfigurationElement.createExecutableExtension(ConfigurationElement.java:243)

at org.eclipse.core.internal.registry.ConfigurationElementHandle.createExecutableExtension(ConfigurationElementHandle.java:55)

at org.eclipse.ui.internal.WorkbenchPlugin$1.run(WorkbenchPlugin.java:293)

at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:70)

at org.eclipse.ui.internal.WorkbenchPlugin.createExtension(WorkbenchPlugin.java:288)

at org.eclipse.ui.internal.registry.EditorDescriptor.createEditor(EditorDescriptor.java:235)

at org.eclipse.ui.internal.EditorReference.createPart(EditorReference.java:328)

at org.eclipse.ui.internal.e4.compatibility.CompatibilityPart.createPart(CompatibilityPart.java:279)

at org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor.createPart(CompatibilityEditor.java:63)

at org.eclipse.ui.internal.e4.compatibility.CompatibilityPart.create(CompatibilityPart.java:317)

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)

at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)

at java.lang.reflect.Method.invoke(Unknown Source)

at org.eclipse.e4.core.internal.di.MethodRequestor.execute(MethodRequestor.java:56)

at org.eclipse.e4.core.internal.di.InjectorImpl.processAnnotated(InjectorImpl.java:898)

at org.eclipse.e4.core.internal.di.InjectorImpl.processAnnotated(InjectorImpl.java:879)

at org.eclipse.e4.core.internal.di.InjectorImpl.inject(InjectorImpl.java:121)

at org.eclipse.e4.core.internal.di.InjectorImpl.internalMake(InjectorImpl.java:345)

at org.eclipse.e4.core.internal.di.InjectorImpl.make(InjectorImpl.java:264)

at org.eclipse.e4.core.contexts.ContextInjectionFactory.make(ContextInjectionFactory.java:162)

at org.eclipse.e4.ui.internal.workbench.ReflectionContributionFactory.createFromBundle(ReflectionContributionFactory.java:104)

at org.eclipse.e4.ui.internal.workbench.ReflectionContributionFactory.doCreate(ReflectionContributionFactory.java:73)

at org.eclipse.e4.ui.internal.workbench.ReflectionContributionFactory.create(ReflectionContributionFactory.java:55)

at org.eclipse.e4.ui.workbench.renderers.swt.ContributedPartRenderer.createWidget(ContributedPartRenderer.java:129)

at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createWidget(PartRenderingEngine.java:971)

at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:640)

at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:746)

at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$0(PartRenderingEngine.java:717)

at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$2.run(PartRenderingEngine.java:711)

at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42)

at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:695)

at org.eclipse.e4.ui.workbench.renderers.swt.StackRenderer.showTab(StackRenderer.java:1306)

at org.eclipse.e4.ui.workbench.renderers.swt.LazyStackRenderer$1.handleEvent(LazyStackRenderer.java:72)

at org.eclipse.e4.ui.services.internal.events.UIEventHandler$1.run(UIEventHandler.java:40)

at org.eclipse.swt.widgets.Synchronizer.syncExec(Synchronizer.java:186)

at org.eclipse.ui.internal.UISynchronizer.syncExec(UISynchronizer.java:145)

at org.eclipse.swt.widgets.Display.syncExec(Display.java:4761)

at org.eclipse.e4.ui.internal.workbench.swt.E4Application$1.syncExec(E4Application.java:211)

at org.eclipse.e4.ui.services.internal.events.UIEventHandler.handleEvent(UIEventHandler.java:36)

at org.eclipse.equinox.internal.event.EventHandlerWrapper.handleEvent(EventHandlerWrapper.java:197)

at org.eclipse.equinox.internal.event.EventHandlerTracker.dispatchEvent(EventHandlerTracker.java:197)

at org.eclipse.equinox.internal.event.EventHandlerTracker.dispatchEvent(EventHandlerTracker.java:1)

at org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEvent(EventManager.java:230)

at org.eclipse.osgi.framework.eventmgr.ListenerQueue.dispatchEventSynchronous(ListenerQueue.java:148)

at org.eclipse.equinox.internal.event.EventAdminImpl.dispatchEvent(EventAdminImpl.java:135)

at org.eclipse.equinox.internal.event.EventAdminImpl.sendEvent(EventAdminImpl.java:78)

at org.eclipse.equinox.internal.event.EventComponent.sendEvent(EventComponent.java:39)

at org.eclipse.e4.ui.services.internal.events.EventBroker.send(EventBroker.java:85)

at org.eclipse.e4.ui.internal.workbench.UIEventPublisher.notifyChanged(UIEventPublisher.java:59)

at org.eclipse.emf.common.notify.impl.BasicNotifierImpl.eNotify(BasicNotifierImpl.java:374)

at org.eclipse.e4.ui.model.application.ui.impl.ElementContainerImpl.setSelectedElement(ElementContainerImpl.java:171)

at org.eclipse.e4.ui.internal.workbench.ModelServiceImpl.showElementInWindow(ModelServiceImpl.java:494)

at org.eclipse.e4.ui.internal.workbench.ModelServiceImpl.bringToTop(ModelServiceImpl.java:458)

at org.eclipse.e4.ui.internal.workbench.PartServiceImpl.delegateBringToTop(PartServiceImpl.java:724)

at org.eclipse.e4.ui.internal.workbench.PartServiceImpl.bringToTop(PartServiceImpl.java:396)

at org.eclipse.e4.ui.internal.workbench.PartServiceImpl.showPart(PartServiceImpl.java:1166)

at org.eclipse.ui.internal.WorkbenchPage.busyOpenEditor(WorkbenchPage.java:3234)

at org.eclipse.ui.internal.WorkbenchPage.access$25(WorkbenchPage.java:3149)

at org.eclipse.ui.internal.WorkbenchPage$10.run(WorkbenchPage.java:3131)

at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:70)

at org.eclipse.ui.internal.WorkbenchPage.openEditor(WorkbenchPage.java:3126)

at org.eclipse.ui.internal.WorkbenchPage.openEditor(WorkbenchPage.java:3090)

at org.eclipse.ui.internal.WorkbenchPage.openEditor(WorkbenchPage.java:3071)

at com.teradata.datatools.dtp.util.DatabaseUtils.openInSQLEditor(DatabaseUtils.java:474)

at com.teradata.datatools.sqldev.dialogs.actions.QuickDeleteActionDelegate.openInSQLEditor(QuickDeleteActionDelegate.java:233)

at com.teradata.datatools.sqldev.dialogs.actions.QuickDeleteActionDelegate.doRun(QuickDeleteActionDelegate.java:109)

at com.teradata.datatools.dtp.util.actions.AbstractRunWithHourglassActionDelegate$1.run(AbstractRunWithHourglassActionDelegate.java:93)

at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:70)

at com.teradata.datatools.dtp.util.actions.AbstractRunWithHourglassActionDelegate.runWithHourglass(AbstractRunWithHourglassActionDelegate.java:125)

at com.teradata.datatools.dtp.util.actions.AbstractRunWithHourglassActionDelegate.run(AbstractRunWithHourglassActionDelegate.java:91)

at org.eclipse.ui.internal.PluginAction.runWithEvent(PluginAction.java:247)

at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:595)

at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:511)

at org.eclipse.jface.action.ActionContributionItem$5.handleEvent(ActionContributionItem.java:420)

at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)

at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4362)

at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1113)

at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4180)

at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3769)

at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$4.run(PartRenderingEngine.java:1127)

at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:337)

at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1018)

at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:156)

at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:654)

at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:337)

at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:598)

at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150)

at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:139)

at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196)

at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134)

at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104)

at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380)

at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235)

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)

at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)

at java.lang.reflect.Method.invoke(Unknown Source)

at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:669)

at org.eclipse.equinox.launcher.Main.basicRun(Main.java:608)

at org.eclipse.equinox.launcher.Main.run(Main.java:1515)

Caused by: java.lang.ClassNotFoundException: An error occurred while automatically activating bundle com.teradata.datatools.dtp.sqltools.ui (1101).

at org.eclipse.osgi.internal.hooks.EclipseLazyStarter.postFindLocalClass(EclipseLazyStarter.java:116)

at org.eclipse.osgi.internal.loader.classpath.ClasspathManager.findLocalClass(ClasspathManager.java:531)

at org.eclipse.osgi.internal.loader.ModuleClassLoader.findLocalClass(ModuleClassLoader.java:324)

at org.eclipse.osgi.internal.loader.BundleLoader.findLocalClass(BundleLoader.java:327)

at org.eclipse.osgi.internal.loader.BundleLoader.findClassInternal(BundleLoader.java:402)

at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:352)

at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:344)

at org.eclipse.osgi.internal.loader.ModuleClassLoader.loadClass(ModuleClassLoader.java:160)

at java.lang.ClassLoader.loadClass(Unknown Source)

at org.eclipse.osgi.internal.framework.EquinoxBundle.loadClass(EquinoxBundle.java:573)

at org.eclipse.core.internal.registry.osgi.RegistryStrategyOSGI.createExecutableExtension(RegistryStrategyOSGI.java:174)

at org.eclipse.core.internal.registry.ExtensionRegistry.createExecutableExtension(ExtensionRegistry.java:905)

at org.eclipse.core.internal.registry.ConfigurationElement.createExecutableExtension(ConfigurationElement.java:243)

at org.eclipse.core.internal.registry.ConfigurationElementHandle.createExecutableExtension(ConfigurationElementHandle.java:55)

at org.eclipse.datatools.sqltools.editor.ui.internal.core.SQLDevToolsUIConfigRegistryImpl.init(SQLDevToolsUIConfigRegistryImpl.java:157)

at org.eclipse.datatools.sqltools.editor.ui.internal.core.SQLDevToolsUIConfigRegistryImpl.getConfigurations(SQLDevToolsUIConfigRegistryImpl.java:87)

at org.eclipse.datatools.sqltools.editor.ui.core.SQLToolsUIFacade.getConfigurations(SQLToolsUIFacade.java:77)

at org.eclipse.datatools.sqltools.sqleditor.internal.SQLEditorPlugin.getTemplateContextTypeRegistry(SQLEditorPlugin.java:240)

at org.eclipse.datatools.sqltools.sqleditor.internal.SQLEditorPlugin.getTemplateStore(SQLEditorPlugin.java:213)

at com.teradata.datatools.sqldev.dialogs.actions.QuickDeleteActionDelegate.openInSQLEditor(QuickDeleteActionDelegate.java:140)

... 35 more

Caused by: org.osgi.framework.BundleException: Exception in com.teradata.datatools.dtp.sqltools.ui.TeradataSQLToolsUIPlugin.start() of bundle com.teradata.datatools.dtp.sqltools.ui.

at org.eclipse.osgi.internal.framework.BundleContextImpl.startActivator(BundleContextImpl.java:792)

at org.eclipse.osgi.internal.framework.BundleContextImpl.start(BundleContextImpl.java:721)

at org.eclipse.osgi.internal.framework.EquinoxBundle.startWorker0(EquinoxBundle.java:941)

at org.eclipse.osgi.internal.framework.EquinoxBundle$EquinoxModule.startWorker(EquinoxBundle.java:318)

at org.eclipse.osgi.container.Module.doStart(Module.java:571)

at org.eclipse.osgi.container.Module.start(Module.java:439)

at org.eclipse.osgi.framework.util.SecureAction.start(SecureAction.java:454)

at org.eclipse.osgi.internal.hooks.EclipseLazyStarter.postFindLocalClass(EclipseLazyStarter.java:107)

... 54 more

Caused by: java.lang.NoSuchMethodError: org.eclipse.ui.internal.registry.FileEditorMapping.setDefaultEditor(Lorg/eclipse/ui/internal/registry/EditorDescriptor;)V

at com.teradata.datatools.dtp.sqltools.ui.TeradataSQLToolsUIPlugin.setDefaultSQLEditor(TeradataSQLToolsUIPlugin.java:110)

at com.teradata.datatools.dtp.sqltools.ui.TeradataSQLToolsUIPlugin.start(TeradataSQLToolsUIPlugin.java:53)

at org.eclipse.osgi.internal.framework.BundleContextImpl$3.run(BundleContextImpl.java:771)

at org.eclipse.osgi.internal.framework.BundleContextImpl$3.run(BundleContextImpl.java:1)

at java.security.AccessController.doPrivileged(Native Method)

at org.eclipse.osgi.internal.framework.BundleContextImpl.startActivator(BundleContextImpl.java:764)

... 61 more

 

 

 

 

 

 

 

 

 

 
 
 
 
 
 
 
 
 
 
 
 

Forums: 

Installing TTU on Windows Server 2012 R2 Version 6.3

$
0
0

Hey, there is a requirement for a user to install TTU on Windows Server 2012 R2 Version 6.3  So, is the process of installing TTU on Windows Server 2012 R2  similar to installing TTU on our local Windows Laptop/Desktop?  Or is there any other extra tools/softwares we need to install specifically for installing TTU on Windows Server? 

Forums: 

TTU (ARCMAIN) for Linux

$
0
0

I want to install TTU Linux (ARCMAIN) on Linux. But I was not able to find it on Public domain.

Forums: 

$LOAD: TPT10507: CLI Error 302: CLI2: BADBUFRQ(302): Invalid buffer size.

$
0
0

Using TPT loader and DataConnector version 15.10.01.00 produce above error. I am using following script to load about 100M rows
 

DEFINE JOB test_tbl
(
    SET TargetWorkingDatabase     = 'DLABDVTPTTEST';

    SET DCPFormat                 = 'Delimited';
    SET DCPOpenMode               = 'Read';
    SET DCPTextDelimiterHEX       = 'ED';
    SET DCPDirectoryPath          = 'data/';
    SET DCPNullColumns            = 'Yes';
    SET DCPTruncateColumnData     = 'Yes';

    SET LoadErrorLimit            = 1;
    SET DDLErrorList              = ['3807','3624'];

    STEP TruncTbl (
        APPLY ('DELETE FROM test_tbl;')
            TO OPERATOR ($DDL);
    );

    STEP Load_test_tbl (
        APPLY $INSERT
            TO OPERATOR (
                 $LOAD ATTR( TargetTable='test_tbl',
                              QueryBandSessInfo='JobId=' || $JOBID || ';UtilityDataSize=MEDIUM;' )
            )
            SELECT *
              FROM OPERATOR (
                 $FILE_READER(DELIMITED 'DLABDVTPTTEST.test_tbl') ATTR(FileName='test_tbl_20160211.txt.gz')
            );
    );
);

 
Any clue on what could be wrong?
 
Thanks

Forums: 

Exporting Teradata results to Office Products

$
0
0

We are using Teradata 14.10.0603. 14.10.06.03 with ODBC Provider Version 14.10.00.02.  This will only allow exports in Access of 65K rows.  Is there an updated ODBC that will allow me to export more rows into Access 2010?  There has to be an updated ODBC driver?

Forums: 

Upload files .dat in Teradata

$
0
0

Hello ,
I have a question concerning the upload of files in Teradata.
Is it possible to upload in files .dat in Teradata? Files .dat are files with fixed record lengths, without tab or any other coloumn delimiter.
Thank you and best regards,
Valeria

Forums: 

Query Grid and Teradata External Table

$
0
0

I am planning to implement Teradata external table in my project. Could anyone give me some insight on Teradata external table. Planning to connect hive table or HDFS files from that.
Is there any relation between Teradata external table and query grid? It would be nice if you can provide me few details on query grid, it's capability, limitation and performance.
 
Thanks in Advance.
 
- Indranil.

Forums: 
Viewing all 870 articles
Browse latest View live


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