Posts by Rodrigo Correa • 15 points
4 posts
-
0
votes1
answer673
viewsA: Script to take page data in Php or python
You can use Curl (search for more options): First see if Curl is enabled: The php info option should show the <?php info() $ch = curl_init(); curl_setopt($ch, CURLOPT_URL,…
-
1
votes1
answer78
viewsA: ORA-01843 error when importing table in Sqoop
The error occurred by the way I created the View, using a literal to select a date range: DT_F>'02/04/16 The error ceased to occur when I used: to_date('02/04/16' , 'dd/mm/yy)…
-
0
votes1
answer188
viewsQ: Create view by transforming deleting or transforming DATE into VARCHAR in ORACLE
I have a table with 58 different columns and would like to create a View treat the fields DATE as SWEEP, without me having to discriminate all the columns in the creation of View. CREATE VIEW…
-
0
votes1
answer78
viewsQ: ORA-01843 error when importing table in Sqoop
I’m facing a mistake that I can’t understand the origin of. Previously I had imported a table with the same data format, with 54 million lines to my HDFS cluster hadoop. Now I’ve created a _View_ in…