Back to OIM Explorer

dbo.QBM_FGIBitXor

Scalar FunctionSQL_SCALAR_FUNCTIONSandbox DB

Scalar Function.

Source: sandbox-db sys.sql_modules

Source size: 149 characters

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

  • No direct source references extracted.

Complete Source

SQL9 lines
1CREATE FUNCTION dbo.QBM_FGIBitXor(2  @Operand1 int,3  @Operand2 int4) RETURNS int5  WITH SCHEMABINDING6AS7BEGIN8  RETURN(@operand1 ^ @operand2)9END
Open raw exported source
SQL ยท Raw3 lines
1   create   function dbo.QBM_FGIBitXor (@Operand1 int, @Operand2 int) returns int with SCHEMABINDING as begin return (@operand1 ^ @operand2) end2 3