The Teradata Aster Discovery Platform is the market-leading big data analytics solution. This analytic platform embeds MapReduce analytic processing for deeper insights on new data sources and multi-structured data types to deliver analytic capabilities with breakthrough performance and scalability. - See more.
Questions tagged [aster]
27 questions
4
votes
2 answers
SQL: How to select window functions alongside aggregate functions
I'm wondering how to mix selecting columns, aggregated values as well as 'selects-from-partitions'. Please let me know if this is a duplicate question!
An example of what I mean:
Given example transaction log:
ID Food Date Cost
1 …

so13eit
- 942
- 3
- 11
- 22
3
votes
1 answer
How to use term with wildcard in ElasticSearch?
'Terms' and 'Wildcard' is provided by Elasticsearch. 'Terms' is search for multiple OR conditions:
{
"terms": {
"IP": [
"192.168.100.11",
"192.168.100.13"
]
}
'Wildcard'…

Inyoung Lee
- 43
- 4
2
votes
1 answer
Aster Plot legend labels along with the arc
I am using aster plot of d3 in my project.
I want legend labels along with the arc radius outside the circle.
I could get an example of piechart showing labels along and outside the arc.
http://bl.ocks.org/Guerino1/2295263
But i am unable to…

Nupur
- 153
- 3
- 5
- 11
1
vote
1 answer
Affine transformation of with Python
Translating my code from MATLAB I am trying to apply an affine transformation to georeference a TERRA-ASTER satellite image using Python 3,
import numpy as np
import matplotlib.pyplot as plt
from skimage import transform as tf
from skimage import…

Martin H. Trauth
- 61
- 4
1
vote
3 answers
How to get sample data from a table or a view in Aster Teradata without using order by?
I am trying to get sample data from a table in Aster Teradata using order by using the following code:
SELECT "col"
FROM (SELECT "col",
Row_number()
OVER (
ORDER BY 1) AS RANK
FROM …

Nisha Tamta
- 13
- 6
1
vote
2 answers
Easiest way to create table of 100 sequential integers in a table?
I wish to simply create a table of 100 rows in Aster where each row is a sequential integer. Easily as 1 - 100.
Am trying to do this in Aster/Teradata.
Once I complete it I am going to experiment with random functions.

Zach
- 37
- 8
1
vote
1 answer
Connecting to Aster Teradata Python
I want to connect to Teradata Aster, I have been searched through multiple sites and read documentation but with not luck. I am able to connect to Teradata just fine, but not to Aster Teradata.
code for teradata that works, but I don't know how to…

Maria Nazari
- 660
- 1
- 9
- 27
1
vote
2 answers
Not able to connect to Aster database through jdbc driver using java
I am trying to connect to Aster server with jdbc drivers from java. I have added already the Jar files to the classpath.
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import…

Ramineni Ravi Teja
- 3,568
- 26
- 37
1
vote
1 answer
Overlapping labels in aster plot
We have a strange issue of overlapping labels in the aster plot d3 chart. We have used the d3 chart library & reference of http://bl.ocks.org/bbest/2de0e25d4840c68f2db1
In below image, 0.02% overlaps 2.91% pie.
To plot the polyline and label, I have…

Prakash Donga
- 558
- 5
- 10
1
vote
1 answer
How do you add header row into a file created through Teradata Aster act?
I've used the syntax below to export a table from Teradata Aster into a csv file:
\o file_name.csv
COPY table_name TO STDOUT WITH DELIMITER ',';
\o
\install file_name.csv
This code creates a csv with data exported from the Aster table. But, it does…

rxb
- 11
- 3
1
vote
2 answers
How to config linphone image sharing server to our own server
I recently have played around with linphone, and I successfully integrate it with my own server for call, and text message, However I am trying to config the sending image and it does not work at all. I get the .php file for file upload on own…

Thyda Eng
- 135
- 1
- 3
- 12
0
votes
0 answers
Aster Multiseat Alternative
Does anyone know a free alternative to Aster Multiseat, which runs on Windows?
A virtualbox doesn't work for my application.
I would be very happy about a solution.
I tried it with a virtual box, but there the connection between the individual files…

Flammel
- 41
- 5
0
votes
0 answers
Converting Aster L1T data radiance to surface reflectance in Google Earth Engine
I am working with ASTER images and I am trying to convert radiance values to reflectance. Currently, I converted DN values to radiance and I don't know what else to do. Also, I found a Landsat function, but I don't know if it works for this case.…
0
votes
0 answers
MIGRATE PIVOT ASTER FUNCTION TO HIVE FUNCTION
I have a existing aster script need to migrate into hive language. But i dont understand how the script define the value into the column. I dont know how to change the function so that it can be execute on hive.Anyone can help me? Here are the…

moreApril
- 1
- 3
0
votes
0 answers
shipping description CSS error woocommerce
I am having an issue with adding a description to the shipping method
I used this snippet to add description
add_action( 'woocommerce_after_shipping_rate', 'action_after_shipping_rate', 20, 2 );
function action_after_shipping_rate ( $method, $index…

Qais
- 1