Database query


 
Thread Tools Search this Thread
Top Forums Programming Database query
# 1  
Old 11-19-2014
Database query

I am getting an error function in date formate while importing the date ccolumn in oracle sql developer tool

My date format in table is 6-Nov-14 and while importing its converted to 6/11/14 eventhough the format is as 6-Nov-14 in excel.

could you please let help me out what I need to change in the date column format to pick it as this format 6-Nov-14.
# 2  
Old 11-19-2014
SQL developper tool is specific and has nothing to do with shel, thread moved to programming
# 3  
Old 11-19-2014
While importing data(In column definition step), you have to set date format
# 4  
Old 11-19-2014
I have set the date format, But I am getting the current date instead the date present in the excel is not getting updated for all the column.

not sure what needs to be changed.
# 5  
Old 11-19-2014
It would help to hear what error message you get.
Is the column you import the date-value into defined as date or as varchar2?
In case it is defined as date it is stored in an internal format and just presented differently when you query it. The representation is defined by the NLS-settings of the client-machine you use to query the table:
Code:
$ export NLS_DATE_FORMAT='DD/MM/RR'
$ sqlplus -s / <<<"select sysdate from dual;"

SYSDATE
--------
19/11/14

$ export NLS_DATE_FORMAT='DD-MON-RR'
$ sqlplus -s / <<<"select sysdate from dual;"

SYSDATE
------------------
19-NOV-14


Last edited by cero; 11-19-2014 at 08:21 AM.. Reason: typo
# 6  
Old 11-19-2014
thanks.

I have around 50,000 records to be updated in my oracle table.

whether I can import thru sql developer tool.
# 7  
Old 11-19-2014
Quote:
Originally Posted by ramkumar15
...I have around 50,000 records to be updated in my oracle table.
whether I can import thru sql developer tool.
You've asked the question about using SQL Developer in your other thread and I've responded to it over there already.

In brief, the answer is - yes, you can insert data from an Excel spreadsheet to an Oracle table using SQL Developer.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Programming

Hierarchical Query for Sybase database

Team I am using DBartisan tool for sybase database. I have a table that has below fields Employee_ID,EMP_Name,First_Nm,Last_Nm,Emp_Designation,Employee's_Manager is it possible to retrieve hierarchical data based on below fields Emp_Designation will have Soft Engg,SSE,Team Lead,... (6 Replies)
Discussion started by: Perlbaby
6 Replies

2. Shell Programming and Scripting

How to print multiple rows from database query?

HI, I am having scenario like to print multipule rows from output of database query sample query i mentioned below code=`db2 -x select code,values from dummy` in the query output i am getting around 110 records with 2 columns. sample output pasted below code,value... (3 Replies)
Discussion started by: bhaskar v
3 Replies

3. Shell Programming and Scripting

How to run a remote database query?

Thank you for taking the time to read my issue. I need to set up a script to run from a wagon wheel type toplogy where 1 server needs to query about 10 to 15 remote servers for duplicate values in a database table. If a duplicate value is found, send an email to me( or wall command to console).... (5 Replies)
Discussion started by: lutador72
5 Replies

4. Shell Programming and Scripting

Help with script to create users from database query

#!/bin/bash user=`mysql userList -uuserlist -puserlistpassword -s -N -e "SELECT userName FROM users WHERE activated='n'"` for i in $user; do useradd "$i" -m doneThis is what I have done so far. But obviously it still does not work. I'm trying to create users based on information stored in a... (5 Replies)
Discussion started by: bucketuk
5 Replies

5. Programming

Oracle Database Query

How can i modify the below to search for the things i'm looking for during a certain time frame? select Node, NodeAlias, Summary, Tally, AlertKey, AlertGroup, Manager, Agent from mrtg_alerts where LastOccurrence > '5-Dec-2010' order by Manager desc; In this particular case, this query is... (3 Replies)
Discussion started by: SkySmart
3 Replies

6. IP Networking

Network Tweaking - Database Query Across Internet

Hi We run a script that queries a database via the internet and we need the fast possible connections to the database server. I have centos server which sends the requests to the database across the internet . it sends upto 800 queries per milliseconds however this using the default... (4 Replies)
Discussion started by: um08
4 Replies

7. Shell Programming and Scripting

To spool output from a database query

Hi all, I would want to spool file for a database query, however by using crontab, the file is not spooled. Below shows my script: ORACLE_HOME="/u01/oraprod/perpdb/10.1.0/db_1" OUTFILE="/tmp/invalid.out" FILE="$HOME/admin/scripts" $ORACLE_HOME/bin/sqlplus -s "/as sysdba"... (0 Replies)
Discussion started by: *Jess*
0 Replies

8. Shell Programming and Scripting

Database Query

Hi, Am using informix database. When i give "isqlrf <database name> - " from the command prompt , i get connected to the database and i can run sql queries.. I am moving to freeBSD and when i give the same command at the prompt i get an error : Index already exists on column Why is this... (0 Replies)
Discussion started by: jisha
0 Replies

9. Shell Programming and Scripting

query to get a value from database

Hi friends, I have written a script which retrieves one value from the database. It takes time for the sql query to get the desired output. So the query runs fine from TOAD or from UNIX console. However if I put this in a script it doesn't work. The script is as below. #! /bin/ksh... (2 Replies)
Discussion started by: vivek_damodaran
2 Replies

10. Shell Programming and Scripting

storing database query in a variable

I am executing a SQL query in Unix Server: select status,location from user_information where request_id='DS-43720' In shell script I am writing this query in the below manner: echo "select status,location from user_information where request_id='DS-43720' ;" >> $directory/info.sql ... (3 Replies)
Discussion started by: debu
3 Replies
Login or Register to Ask a Question