State value mapping in SQL Clone Config Database
RobertReid
Posts: 2 New member
in SQL Clone
What states do the values represent in the State column of the Operations, Images, and Clones tables in the SQLClone_Config database? Is there a table where the mappings of state (integer) to state descriptions can be found?
Thanks!
Robert Reid
Thanks!
Robert Reid
Best Answer
-
owen.hall Posts: 57 Silver 4Hi Robert,Here's the listing as of version 5.3.2.Operations:
- UserRequested (a user has told the Clone server to perform an operation)
- DispatchedToAgent (the Clone server has told the agent to perform the operation)
- Started (the agent has begun working on the operation)
- Successful (the operation succeeded)
- Faulted (the operation failed)
- Canceled (the operation was cancelled before it succeeded or failed)
Images:- BeingCreated (SQL Clone is creating the image)
- Created (the image is ready to use)
- Missing (more or less unused)
- Deleted (the image has been deleted)
- BeingDeleted (the image is being deleted)
- FailedToCreate (image creation failed)
Clones:- BeingCreated (SQL Clone is creating the clone)
- Online (the clone should be available in SQL Server)
- Offline (the clone storage exists but we can't online it for some reason)
- Missing (the clone storage or data files isn't accessible)
- Deleted (the clone has been deleted)
- BeingDeleted (the clone is being deleted)
- FailedToCreate (clone creation failed)
- ImageInaccessible (the clone's host machine can't access its parent image, so we can't risk using it)
- CleanUpRequired (we couldn't delete the clone when requested, but will clean it up when we can)
- BeingReset (the clone is being reset back to its initial state)
- AgentOffline (we don't know the clone's state because we can't contact its agent)
Hope that helps!Software Engineer
Redgate Software - UserRequested (a user has told the Clone server to perform an operation)
Answers