All Tags >
TPL output target (
RSS)
Sorry, but there are no more tags available to filter with.
-
[QUOTE User="LogParser User : Allan Pike"]Quote: I'm not familiar with an environment variable named %SYSTEM_TIMESTAMP%. Is that something you are setting yourself? Why not just use the %DATE% and %TIME% variables? They are always formatted in loca...[/QUOTE] The variable %SYSTEM_TIMESTAMP% is a valid...
-
I'm not familiar with an environment variable named %SYSTEM_TIMESTAMP%. Is that something you are setting yourself? Why not just use the %DATE% and %TIME% variables? They are always formatted in localtime.
-
-
[QUOTE User="LogParser User : Allan Pike"]Quote: No, the FIELD_# variables can only be used in the body, they change from record to record whereas the LPHEADER section is only generated once per execution. What you could do though, is set the %1 ar...[/QUOTE] Hello I have a similar query regarding system...
-
Hmmm, thought I'd tried and tried that to no effect. But I'll give it another try. I did get it working with CSS stuff after some messing around. Appreciate the reply, Sir Supreme Being.
-
In this instance, yes you would just be using bog-standard html. In your TH tag, I added a width=, shown below <TH width=21>%FIELDNAME_2%</TH> Graham Header Line %FIELDNAME_1% %FIELDNAME_2% %FIELD_1% %FIELD_2%
-
I've been trying to set a fixed column width in a tpl file. Can't seem to get it right. Doesn't the template for html just use standard html code ? Could I see a simple example of how to fix the column width on the 2nd field of a two field template ? Title Line Header Line %FIELDNAME_1% %FIELDNAME_2...
-
I pieced it together from other queries I removed the where clause and still no luck. I wanted to find out if had some pages runnig longer than normal. We have some large PDF files and search pages. I wanted to know which ones where be taking the longest (time-taken)
-
Did you write this query yourself or did you get it from somewhere else? Are you sure that you want to have this part: EXTRACT_EXTENSION(TO_LOWERCASE(cs-uri-stem)) as page That means you wouldn't actually see the full page names but only their extensions...
-
I wasnt sure where to post this but here is the entire project including asp.net 1.1 webinterface I was having a problem with longest running pages SELECT TOP 50 EXTRACT_EXTENSION(TO_LOWERCASE(cs-uri-stem)) as page, max(time-taken) INTO E:\LogFiles\LOG\%outputfilename% FROM S:\LogFiles\W3SVC1\%inputfilename...