[dbo].[bitor]
(local)
>
mdb
>
Scalar-valued Functions
> dbo.bitor
Properties
Parameters
SQL Script
Uses
Used By
Properties
Property
Value
ANSI Nulls On
Quoted Identifier On
Parameters
Name
Data Type
Max Length (Bytes)
@x
int
4
@y
int
4
SQL Script
CREATE
FUNCTION
[dbo]
.
[bitor]
(
@x
as
int
,
@y
as
int
)
returns
int
AS
BEGIN
return
@x
|
@y
END
GO
Uses
dbo
Used By
[dbo].[AL_BATCH_SAVE_CONFIGURATION]