counts


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers counts
# 8  
Old 06-09-2005
Any hint regading how are you recienving the files.
# 9  
Old 06-09-2005
the records are ftp'd into a directory and then my script scans the directory for the files
# 10  
Old 06-09-2005
I'm confused about what you want. First you say count the records. Then you say count the files.

Count the records (as vgersh99 has given) wc -l < filename

Count the files ls /dir/where/my/files/are | wc -l

Is this what you want?

Count all lines in all files (assuming there aren't too many files)
wc -l /dir/where/my/files/are/* | grep "total" | awk '{print $1}'

More information is required about *exactly* what it is you're trying to achieve....

Cheers
ZB
# 11  
Old 06-09-2005
ok, this is what i'm doing:
files are being sent to one of my directories, my script will scan that directory and acquire the files, this is where i want to *count* the files to see how many i picked up from the directory, then i'm using SQL*Loader to load the file into a table, after loading i have a script than runs and tells me how many records were loaded into the table successfully, this is where i will compare the count from my loading script log to the *count* above. if i needed an sql count there wouldn't be a problem but these unix commands are new to me.
# 12  
Old 06-09-2005
If you want to import files (read records) into the database using SQL* Loader, I believe you must be having a single file containing multiple records which you are inserting into the database. If that be the case the number of records can be found by: wc -l <filename_to_be _inserted>

BTW SQL* Loader generates a log of files inserted and rejected. You would not need any script to tell you that

HTH
 
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Avoiding new line for the counts

Hi Team, Am getting the below output but need the count of records to be displayed in same line but currently count alone moves to next line. Please let me know how we can still keep the count in the same line. ######code ##### while read YEAR; do for i in TEST_*PGYR${YEAR}_${DT}.csv; do... (3 Replies)
Discussion started by: weknowd
3 Replies

2. Shell Programming and Scripting

Counts not matching in file

I can not figure out why there are 56,548 unique entries in test.bed. However, perl and awk see only 56,543 and that # is what my analysis see's as well. What happened to the 5 missing? Thank you :). The file is attached as well. cmccabe@DTV-A5211QLM:~/Desktop/NGS/bed/bedtools$wc -l... (2 Replies)
Discussion started by: cmccabe
2 Replies

3. UNIX for Dummies Questions & Answers

Get counts from List

This is very easy , but I`m struggling .. please help modify my script, I want to count the number of h and n , from the second column group by the first. The second column is binary, can only have h and n. a h a h a n a n a h b h b h b h b h b h c n c h c h c h c h (2 Replies)
Discussion started by: jianp83
2 Replies

4. Shell Programming and Scripting

counts for every 1000 interval

Hi, I have a file with 4 million rows. Each row has certain number ranging between 1 to 30733090. What I want is to count the rows between each 1000 intervals. 1-1000 4000 1001-2000 2469 ... ... ... ... last 1000 interval Thanks, (7 Replies)
Discussion started by: Diya123
7 Replies

5. Shell Programming and Scripting

Counts based on occurances

Hi, I have a file with 2500 entries. There are many duplicates,triplicates symbols in my file in the first column and the second column has categories(high/medium/low) . I want to have count for the occurances of each category for each unique symbol ABC high ABC high ABC medium ABC ... (2 Replies)
Discussion started by: Diya123
2 Replies

6. Shell Programming and Scripting

counts based on percentage

I have a file with multiple entries and I have calculated the percentages. Now I want to know how many of my entries are there between 1-10% 11-20% and so on.. chr1_14401_14450 0.211954217888936 chr1_14451_14500 1.90758796100042 chr1_14501_14550 4.02713013988978 chr1_14551_14600 ... (3 Replies)
Discussion started by: Diya123
3 Replies

7. Shell Programming and Scripting

Get counts for multiple files

How do get the counts by excluding header and tailer. wc -l customer_data*.0826 31 customer_data_1.0826 57 customer_data_2.0826 456 customer_data_3.0826 668 customer_data_4.0826 789 customer_data_5.0826 2344 customer_data_6.0826 13457 customer_data_7.0826... (6 Replies)
Discussion started by: zooby
6 Replies

8. UNIX for Dummies Questions & Answers

wc -c counts 1 char more per line

Hi, this might be a basic question... why is that wc -c counts 1 more per line than what is there. for example, > cat dum1.txt 123 12 > wc -c dum1.txt 7 dum1.txt Thanks, Sameer. (4 Replies)
Discussion started by: ensameer
4 Replies

9. UNIX for Dummies Questions & Answers

counts

To start I have a table that has ticketholders. Each ticket holder has a unique number and each ticket holder is associated to a so called household number. You can have multiple guests w/i a household. I would like to create 3 flags (form a, for a household that has 1-4 gst) form b 5-8 gsts... (3 Replies)
Discussion started by: sbr262
3 Replies
Login or Register to Ask a Question