dbo.QBM_FCVDatetimeToString
Scalar FunctionSQL_SCALAR_FUNCTIONSandbox DB
Interpretation
- Database function. Usually supports views, validation, or calculated predicates; look at referenced-by entries for callers.
Relations
- No extracted relations.
Typed Edges
- No typed edges extracted for this source.
References
- No direct source references extracted.
Referenced By
- dbo.QBM_FCVDatetimeToDatetimeEve
- dbo.QBM_FCVDatetimeToHash
- dbo.QBM_FCVDatetimeToStringUTC
- dbo.QBM_FGI093F4EF597272C7DCA06D_1
- dbo.QBM_FGIJobQueueMessageAdd
- dbo.QBM_FSQCEFParmSelect
- dbo.QBM_FSQCVColumnToBuffer
- dbo.ADS_ZAccountInADSGroup
- dbo.QBM_PBufferT_ProcessAll
- dbo.QBM_PBufferT_ProcessTable
- dbo.QBM_PCustomSQLPropagate
- dbo.QBM_PDBQCS_CurrentMoveSlot
- dbo.QBM_PDBQueuePondEnd
- dbo.QBM_PExecuteSQLWithRetry_LLP
- dbo.QBM_PJobQueueLoad
- dbo.QBM_PJobRestart
- dbo.QBM_PMultilanguageDoubleClear
- dbo.QBM_PProcessGroupCreate
- dbo.QBM_PQBMDBQueuePondDelete
- dbo.QBM_PTriggerWatchCreate
- dbo.QBM_PXDateSubItemUpdate
- dbo.QBM_ZConnectionClearUnused
- dbo.QER_PITShopHelperFill_bulk
- dbo.QER_PITShopProductNodeMove
- dbo.QER_PPickedItemInsertRandom
Complete Source
1CREATE FUNCTION dbo.QBM_FCVDatetimeToString(2 @in datetime3) RETURNS varchar(234)5 WITH SCHEMABINDING6AS7BEGIN8 RETURN(convert(varchar(23), isnull(@in, '1899-12-30'), 121))9END
Open raw exported source
1 create function dbo.QBM_FCVDatetimeToString(@in datetime) returns varchar(23) with SCHEMABINDING as begin return( convert(varchar(23), isnull2(@in, '1899-12-30'), 121) ) end 3