Get-QLRSqlVirtualLogFile

From PowerGUI Wiki

Jump to: navigation, search

Generates list of virtual log files.

Contents

Syntax

Get-QLRSqlVirtualLogFile [-Reader] <LogReaderSSWrapper> [[-FileID] [<Int32[]>]] [<CommonParameters>] Get-QLRSqlVirtualLogFile [-LogFile] <LogFileWrapper[]> [<CommonParameters>]

Detailed Description

The Get-QLRSqlVirtualLogFile cmdlet generates a list of virtual log files in an open LogReader object and writes it to a pipeline.



Related Commands

Parameters

Name Description Required? Pipeline Input Default Value
Reader The open LogReader object. This object should be created by the New-QLRSqlReader cmdlet. true false
FileID The ID of a physical log file. false true (ByValue, ByPropertyName)
LogFile The physical log file descriptor. true true (ByValue)

Input Type

Quest.LogReader.SqlServer.Wrappers.LogReaderSSWrapper

Return Values

Quest.LogReader.SqlServer.Wrappers.VirtualLogFileWrapper

Examples

EXAMPLE 1

$lr = New-SQLSqlReader -Online . Northwind Windows
Get-QLRSqlVirtualLogFile $lr

These commands return all virtual log files of the Northwind database on the local server.

Personal tools