Sponsored Content
Top Forums Programming How to arhive hive external tables? Post 303035586 by Master_Mind on Wednesday 29th of May 2019 02:14:38 AM
Old 05-29-2019
Yes i did that but i am struck to get the created date and location, so that i can able to use 90 days logic. Can you advise how this can be done using scripting
 

5 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Converting tables of row data into columns of tables

I am trying to transpose tables listed in the format into format. Any help would be greatly appreciated. Input: test_data_1 1 2 90% 4 3 91% 5 4 90% 6 5 90% 9 6 90% test_data_2 3 5 92% 5 4 92% 7 3 93% 9 2 92% 1 1 92% ... Output:... (7 Replies)
Discussion started by: justthisguy
7 Replies

2. Shell Programming and Scripting

Trouble with external tables

Hi All, My flat file lets say has the following contents AT & T CITIZENS MOHAVE CELLULAR COMMNET DRR E1CELLULAR .... Now, Im trying to select data from a flat file(sitting on unix server) and want to run a simple query as below(running Oracle 10g) SELECT MO_IDENTIFER,... (5 Replies)
Discussion started by: PG3
5 Replies

3. UNIX for Dummies Questions & Answers

ODBC Hive error

Hi , I am trying to setup HIVE ODBC with below setting Host: Local host port : 10000 Database : Default Hive server type : Hive server 2 Mechanism: User But getting below error: Driver Version: V2.5.0.1001 Running connectivity tests... Attempting connection Failed to... (1 Reply)
Discussion started by: rakesh_411
1 Replies

4. Shell Programming and Scripting

Read CSV file and delete hdfs, hive and hbase tables

I have a CSV file with hdfs directories, hive tables and hbase tables. 1. first column - hdfs directories 2. second column - hive tables 3. third column - hbase tables I have to check the csv file and look for the first column and delete the hdfs directory from the hdfs path, now... (2 Replies)
Discussion started by: shivamayam
2 Replies

5. Shell Programming and Scripting

Extract hive table structure

Hi, I need to extract only the create table structure with columns alone. for eg hive_table show create table hive_table: create table hive_table(id number,age number) OUTPUTFORMAT 'org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat' LOCATION 'hdfs:/path/' I need only below ... (5 Replies)
Discussion started by: rohit_shinez
5 Replies
syms(4) 						     Kernel Interfaces Manual							   syms(4)

NAME
syms - Symbol table SYNOPSIS
#include <sym.h> #include <symconst.h> DESCRIPTION
The symbol table departs from the standard COFF symbol table. The symbol table consists of many tables unbundling information usually found in the one COFF symbol table. The symbol table should be viewed as a handcrafted, network-style database designed for space and access efficiency. The following structures or tables appear in the symbol table: -------------------------------------------------------------------------- Table Contents -------------------------------------------------------------------------- Symbolic header Sizes and locations of all other tables File descriptors Per file locations for other tables Procedure descriptors Frame information and location of procedure information Local symbols Local type, local variable, and scoping informa- tion Local strings String space for local symbols Line numbers Compacted by encoding, contains a line per instruction Relative file desc. Indirection for inter-file symbol access Optimization symbols To be defined Auxiliary symbols Data type information for local and external sym- bols External symbols Global text and data symbols External strings String space for external symbols Dense numbers Index pairs (file, symbol) for compiler use (-oldc only) -------------------------------------------------------------------------- External and local symbols are both represented using the following structure: struct { long iss; /* index into string space */ long value; /* address, size, etc.; depends on sc and st */ unsigned st: 6; /* symbol type (e.g., local, param, etc.) */ unsigned sc: 5; /* storage class (e.g., text, bss, etc.) */ unsigned reserved: 1; unsigned index; /* index to symbol or auxiliary tables */ }; RELATED INFORMATION
ldfcn(4). delim off syms(4)
All times are GMT -4. The time now is 09:26 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy