Log file not getting populated when using BTEQ


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Log file not getting populated when using BTEQ
# 1  
Old 12-02-2008
Log file not getting populated when using BTEQ

Hi,

I am trying to run some SQL scripts under the UNIX server using BTEQ. When I try to create a log file, the file gets populated only to the point where I log into BTEQ.

The log file for the running of the actual script does not seem to be stored.

Would any one know ehy this could be happening?

The command I am using is: nohup <file_name> > log_file.log &

Thanks!
# 2  
Old 12-05-2008
Yeah, the script is waiting for input from either standard input or directly from the terminal. Either way, it expects you to login first before doing anything.

Create a database user with limited access to the database, prohibit network logins to that user, and allow the user to login with no password. Change the script to use that user. Try again.
# 3  
Old 12-05-2008
Otheus,

Thanks so much for getting back to me on this. I have the login information set up for the script to run, and the scripts actually do run and I do end up getting results.

But the log file never gets populated with the rest of the information.

I have fairly little knowledge of UNIX, so I might have missed out on what you actually meant to say. So if your answer already covers what I said above, can you please explain your answer with a little more detail?

Thanks again,
ZZ
# 4  
Old 12-05-2008
You might want to post the script. Remove any passwords it may contain. Add it as an attachment. I might be able to figure out what's going on.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

BTEQ script in Shell Script

Hi Team, I have a requirement where I need to check for table. If exists, drop it else do nothing. For that I written below code. T_NAME="V_"`echo ${PARAM_BASE} | cut -d'_' -f4-` tab_name="UV_"${T_NAME} query_et() { bteq << EOBTQ | grep '^>' | sed -e "s/^>//" ... (11 Replies)
Discussion started by: ace_friends22
11 Replies

2. Shell Programming and Scripting

How to write BTEQ batch scripts in UNIX?

Hi All, I need to write Unix shell script. To star with : I need to do some file checking on unix file system, then based on file existance, I need to run diff SQL in Teradata Bteq. After that, depending on Results of SQL, I need to code other shell scripting like moving file, within same... (4 Replies)
Discussion started by: Shilpi Gupta
4 Replies

3. Web Development

How to get input text boxes populated / perl cgi?

Hi, I know how to populate a combo box or a drop down list box which I do as under : Query that gets the data for the drop down box : $qry = "select \"EmployeeID\" AS empid, \"FirstName\"::text || ' ' ||\"LastName\"::text as name from \"Employees\""; $qq =... (1 Reply)
Discussion started by: terrykhatri531
1 Replies

4. UNIX and Linux Applications

Using BTEQ with perl to Teradata

Has anyone used either bteq or mload for inserting into a Teradata Database via perl. We're running Red Hat Enterprise 5.7. I've gotten the DBD::ODBC drivers installed and running. I installed the Teradata ICU, TeraGSS and ODBC pkgs. We are using perl to insert data across the network into... (1 Reply)
Discussion started by: islanderman
1 Replies

5. AIX

Hard Drive stuck in populated state?

Hi all, I ended up replacing a failed disk drive on my power 7. I had a few issues with unmirroring as it had a stale logical volume. I ended up finally getting it to unmirror the rootvg. I had an empty space in slot 3 so I ended up putting the new disk in slot 3. It configured to hdisk0 with no... (2 Replies)
Discussion started by: AlexanderIII
2 Replies

6. Shell Programming and Scripting

How to pass parameter to bteq?

I am using below code to connect terdata and getting the query result in a file.Now i want to use same code for different tables,plz tell me how to pass table name as parameter.i tried using as below code but not working. bteq < /download/viv/dev/ops/Scripts/ter.sh FLTORGTKR_ORG_etc.. ... (1 Reply)
Discussion started by: katakamvivek
1 Replies

7. Shell Programming and Scripting

Teradata connectivity through UNIX by use bteq

Hi, I want a script for connecting teradata to load the file to teradata table. Can you please help me out. Thanks in advance. (1 Reply)
Discussion started by: victory
1 Replies

8. Shell Programming and Scripting

Delete log file entries based on the Date/Timestamp within log file

If a log file is in the following format 28-Jul-10 ::: Log message 28-Jul-10 ::: Log message 29-Jul-10 ::: Log message 30-Jul-10 ::: Log message 31-Jul-10 ::: Log message 31-Jul-10 ::: Log message 1-Aug-10 ::: Log message 1-Aug-10 ::: Log message 2-Aug-10 ::: Log message 2-Aug-10 :::... (3 Replies)
Discussion started by: vikram3.r
3 Replies

9. AIX

When/how is $HOSTNAME populated ?

When and how is the variable $HOSTNAME populated ? I am asking because I had a weird situation that just happened. I have created backup scripts that do backups on different servers. Each servers has different folders to be backed up. So I had included a check on $HOSTNAME to find out which... (5 Replies)
Discussion started by: Browser_ice
5 Replies

10. Shell Programming and Scripting

Connectivity to Bteq through Perl

I want to connect to bteq using Perl script and i am unaware of how to do this? In Shell script it is very simple, Bteq<<-END .logon ..... ... .quit ... END but what is the syntex for perl? Please help me out . Thanks Kunal (1 Reply)
Discussion started by: kunal_dixit
1 Replies
Login or Register to Ask a Question