All Tags ›
Microsoft Log Parser Toolkit, the book (
RSS)
Sorry, but there are no more tags available to filter with.
-
I am trying to upload the IIS log file to SQL SERVER. In one scenario log parser takes around 2 hours to upload records of 1.5 million. Is it expected behaviour? Because in previous parsing in took less than 1 min to upload 50,000 records. Below is the code for upload "c:\program files\log parser 2.2...
-
Yes, but it isn't quite that simple. You'll need to use the multiplexing feature which is documented in the help file. Have your first output column be the date string as you want it, then output INTO *.log
-
I think it's under the wrong topic, but i can't move it.
-
Hi there, I'm just starting to play around with logparser and got a problem with it. I'm merging multiple log files from a load balanced, serverfarm into one file. The log files are ex070104.log where the number is the date. What i whould like todo is get al the logs and put it in ex150107.log so i can...
-
-TSFormat:"MM/dd/yyyy hh:mm:ss.lxx" works for me.
-
Yes the problem is because the batch file is interpreting the %xx% as a variable. Double up your % signs to escape them from the batch interpreter. e.g. LIKE %%erp%%
-
I am using a batch job to manage some services, and I am calling a batch job that has the following command: logparser -i:TEXTLINE -stats FF -rtp:25 "select text from c:\qresults.txt where text like '%erp%' or text like '%service_name%' or text like '%state%'" when that batch job run either through that...
-
Please tell me the query to retireve node names from xml file using logparser... how to get node names? -vishakha
-
Page 20 of the Logparser toolkit gives an example of using the -TSFormat:"MM/dd/yyyy hh:mm:ss.ll" string to cause the timestamp to be parsed as (T) for time rather than (S) for string. I have applied this example to my perfmon csv file, but the timestamp is still being parsed as a string. I need to get...
-
[QUOTE User="LogParser User : WalterLeinert"]Quote: Hi, i wrote a custom plugin in c# similar to the cluster log plugin to analyze log4net logfiles with the really great LogParser (!). Sample: 2006-08-08 08:53:35,805 [3324] INFO AppBase.Portal...[/QUOTE] Hi, i found several hints that the fractional...