Search
 
SCRIPT & CODE EXAMPLE
 

TYPESCRIPT

Check restore percentage tsql

SELECT r.session_id,r.command,CONVERT(NUMERIC(6,2),r.percent_complete)
AS [Percent Complete],CONVERT(VARCHAR(20),DATEADD(ms,r.estimated_completion_time,GetDate()),20) AS [ETA Completion Time],
CONVERT(NUMERIC(10,2),r.total_elapsed_time/1000.0/60.0) AS [Elapsed Min],
CONVERT(NUMERIC(10,2),r.estimated_completion_time/1000.0/60.0) AS [ETA Min],
CONVERT(NUMERIC(10,2),r.estimated_completion_time/1000.0/60.0/60.0) AS [ETA Hours],
CONVERT(VARCHAR(1000),(SELECT SUBSTRING(text,r.statement_start_offset/2,
CASE WHEN r.statement_end_offset = -1 THEN 1000 ELSE (r.statement_end_offset-r.statement_start_offset)/2 END)
FROM sys.dm_exec_sql_text(sql_handle))) AS [SQL]
FROM sys.dm_exec_requests r WHERE command IN ('RESTORE DATABASE','BACKUP DATABASE')
Comment

PREVIOUS NEXT
Code Example
Typescript :: what is endurance testing 
Typescript :: Function to generate random number (typescript) 
Typescript :: copy text from file to another file in javascript with fs 
Typescript :: html download tag not working angular 
Typescript :: form control adding disabled and validators 
Typescript :: flutter firebase notification token 
Typescript :: how to remove last 2 elements from list in python 
Typescript :: ts class 
Typescript :: google reference static 
Typescript :: function to find the unique elements from two arrays 
Typescript :: angular set query params 
Typescript :: angular typescript refresh page 
Typescript :: react vimeo player 
Typescript :: select column values from array typescript 
Typescript :: length in typescript 
Typescript :: get enum key typescript 
Typescript :: typescript cheat sheet 
Typescript :: typescript check type of variable 
Typescript :: NullInjectorError: R3InjectorError(DynamicTestModule)[AdminTestCentersComponent - ToastrService - InjectionToken ToastConfig - InjectionToken ToastConfig]: NullInjectorError: No provider for InjectionToken ToastConfig! 
Typescript :: pandas check if row exists in another dataframe 
Typescript :: pandas value_counts multiple columns 
Typescript :: how to add an element to a Typescript array 
Typescript :: access single document with its id flutter 
Typescript :: typescript generic dictionary 
Typescript :: add legends to y plots matplotlib 
Typescript :: calling contract method 
Typescript :: create npm module typescript 
Typescript :: typescript union types 
Typescript :: class-validator not working nest-typescript-starter 
Typescript :: update behaviorsubject value without emitting 
ADD CONTENT
Topic
Content
Source link
Name
3+6 =