| Database | Proc | Application | Created | Links |
| sybsystemprocs | sp_jdbc_unitext_setdata | ![]() | 31 Aug 14 | Defects Dependencies |
1 2 CREATE PROCEDURE sp_jdbc_unitext_setdata(@locator BINARY(24), @offset bigint, @new_data UNITEXT, @data_length INT OUTPUT) AS BEGIN 3 SELECT @data_length = setdata(locator_literal(UNITEXT_LOCATOR, @locator), @offset, @new_data) 4 END 5 6
exec sp_procxmode 'sp_jdbc_unitext_setdata', 'AnyMode' go Grant Execute on sp_jdbc_unitext_setdata to public go
| DEFECTS | |
PERR 6 Parsing Error Could not find COLUMN UNITEXT_LOCATOR in the query's tables | 3 |
MGTP 3 Grant to public sybsystemprocs..sp_jdbc_unitext_setdata | |
MUCO 3 Useless Code Useless Begin-End Pair | 2 |
MUCO 3 Useless Code Useless Brackets in create proc | 2 |
QAFM 3 Var Assignment from potentially many rows | 3 |
MTR1 2 Metrics: Comments Ratio Comments: 0% | 2 |
MTR2 2 Metrics: Cyclomatic Complexity Cyclo: 1 = 0dec - 1exi + 2 | 2 |
MTR3 2 Metrics: Query Complexity Complexity: 2 | 2 |
| DEPENDENCIES |