Examples of Filtered Saved Queries

The following examples display the type of filtering available on saved queries using the show command.

  • show aquery where user = asmith

    This command filters the saved query aquery for information specific to user asmith.

  • show aquery where user = asmith and literal = Parameter time from "2017-05-05 15:20:20" to "2017-05-05 15:30:00" > out.dat

    This command filters the saved query aquery for information on user asmith and the literal value parameter between the time of 3:20 and 3:30 PM on May 05, 2017. The command also stores the results of the filtered query to a text file named out.dat.

  • show aquery, bquery where user = asmith and literal = Parameter time from "2017-05-05 15:20:20" to "2017-05-05 15:30:00" > out.dat

    This command filters the saved queries aquery and bquery based on the same conditions in the previous bullet.