Re: [U2] U2 demos and sample code now on Github

2013-06-11 Thread Daniel McGrath
For those that are interested, here is the web meeting/dial-in information we will try for tonight. We just moved to WebEx internally so I apologize in advanced if it doesn't work. Do be aware that I'm planning this as more of a hands-on meeting, so after the initial explanations, it won't exact

Re: [U2] MsgLvlConfig

2013-06-11 Thread Bill Haskett
Robert: Thanks! The links were very informative. :-) Bill Untitled Page - Original Message - *From:* rfrai...@utahmed.com *To:* U2 Users List *Date:* 6/11/2013 12:10 PM *Subject:* Re: [U2] MsgLvlConfig http://

Re: [U2] MsgLvlConfig

2013-06-11 Thread Robert Frailey
http://u2-universe-unidata.1073795.n5.nabble.com/Re-Logging-td28343.html http://www.mail-archive.com/u2-users@listserver.u2ug.org/msg32670.html http://comments.gmane.org/gmane.comp.db.u2.general/57763 Robert - Original Message - From: "Bill Haskett" To: "U2 Mail List" Sent: Tuesday,

[U2] MsgLvlConfig

2013-06-11 Thread Bill Haskett
Does anyone have documentation on "msglevelconfig"? I've set it as: unidata = 16/PID/DT ...and get all kinds of junk like: Sat May 25 20:27:45 pid=3808 No active select list, creating empty saved list. Sat May 25 21:17:59 pid=172 No active select list, creating empty saved list. Sat May 25

Re: [U2] [UV] Record Sampling for File Sizing Diagnostics

2013-06-11 Thread Perry Taylor
Great minds! Wow I knew about SAMPLED but it didn't occur to me that it could be used concurrently with SAMPLE. Nice! I'll give that try. Thanks guys! Perry -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Charl

Re: [U2] Writing into metadata

2013-06-11 Thread Susan Joslyn
Richard, Oh my goodness, that is AWESOME! That is Perfect! That is the best possible answer - using a tool (EXIFTOOL, even, which I know a little) but running it from BASIC. Ye! Thank you so much - everyone who answered. This forum ... there isn't anything this crowd can't solve. Thank you

Re: [U2] Writing into metadata

2013-06-11 Thread Wols Lists
On 11/06/13 12:22, Carl Dula wrote: > This is not directly in uv, but you could execute a Powershell script on the > windows box to do it. > > Take a look at the following, which should give you some good info. > > http://blogs.technet.com/b/jamesone/archive/2010/07/05/exploring-the-image-powers

Re: [U2] Writing into metadata

2013-06-11 Thread Susan Joslyn
Hi Ian, I have exiftool but was unable to update the comments using it. I was able to use it to take the comments and update the name, but couldn't figure out how to update the comments field from an outside source. Maybe I should look again (especially now that you have given me an example). My

Re: [U2] Writing into metadata

2013-06-11 Thread McGowan, Ian
Another great tool, with a little bit of a learning curve though, is exiftool: http://www.sno.phy.queensu.ca/~phil/exiftool/ I am using it to reorganize a large photo library (which it's awesome for), but this page talks about updating tags: http://www.sno.phy.queensu.ca/~phil/exiftool/#writing

Re: [U2] [UV] Record Sampling for File Sizing Diagnostics

2013-06-11 Thread Charlie Noah
I probably hit Send within milliseconds of you. :-) Charlie On 06-11-2013 11:15 AM, Charles Stevenson wrote: SAMPLED keyword with a D on the end will go thru the entire file. SAMPLED 1000 will get every thousandth record as it reads through the file. SAMPLED 1000 SAMPLE 2000 will do the same,

Re: [U2] [UV] Record Sampling for File Sizing Diagnostics

2013-06-11 Thread Charlie Noah
Hi Perry, Does UV support SAMPLED? If so, use: SELECT file SAMPLE 300 SAMPLED where is the number of records to skip between sample IDs picked up. If it doesn't, you're probably going to have to write a little program. Regards, Charlie Tiny Bear's Wild Bird Store Home of "Safe

Re: [U2] [UV] Record Sampling for File Sizing Diagnostics

2013-06-11 Thread Charles Stevenson
SAMPLED keyword with a D on the end will go thru the entire file. SAMPLED 1000 will get every thousandth record as it reads through the file. SAMPLED 1000 SAMPLE 2000 will do the same, but then stop after it builds a list of 2000. That is, after it's read thru the 1st 2 million keys. On Tue, Ju

[U2] [UV] Record Sampling for File Sizing Diagnostics

2013-06-11 Thread Perry Taylor
I have several *very* large files on which I need to perform some file sizing diagnostics. Rather than repeatedly running HASH.AID against these files is there a good way to sample say 2-3 million records to copy into a test file? SAMPLE will only grab the first n records in hash order and I'm

Re: [U2] Writing into metadata

2013-06-11 Thread Susan Joslyn
Thanks, Manu. This does look like it would do everything I need - both now and future things I hadn't even considered! It does look like a bit of a learning curve, but worth it. SJ -Original Message- From: Manu Fernandes [mailto:e...@infodata.lu] Sent: Tuesday, June 11, 2013 7:47 AM To:

Re: [U2] Writing into metadata

2013-06-11 Thread Manu Fernandes
Hi, We use ImageMagick (http://www.imagemagick.org/) ; It provides OS command line to read / write picture properties ; and many other tools for image manipulation. Check "identify -verbose picturefilename" then parse what you need ; or use "escapes" (http://www.imagemagick.org/script/escape.ph

Re: [U2] Writing into metadata

2013-06-11 Thread Carl Dula
This is not directly in uv, but you could execute a Powershell script on the windows box to do it. Take a look at the following, which should give you some good info. http://blogs.technet.com/b/jamesone/archive/2010/07/05/exploring-the-image-powershell-module.aspx --

[U2] Writing into metadata

2013-06-11 Thread Susan Joslyn
Hi everyone, Does any one know how to use a unibasic program to write into the metadata of a .jpg file in windows? Or to read, rename and write that file? If someone knows how to do it with a windows tool I'm game, but I've looked into some that require me to learn a lot of new skills that I cann