RE: Encrypted Stored Proc
From: Alejandro Mesa (AlejandroMesa_at_discussions.microsoft.com)
Date: 11/09/04
- Next message: Scott Ivey: "Re: [DBNETLIB][ConnectionOpen (Connect()).]SQL Server does not exist or access denied."
- Previous message: Aaron [SQL Server MVP]: "Re: Text Files"
- In reply to: L Gonzales: "Encrypted Stored Proc"
- Next in thread: Adam Machanic: "Re: Encrypted Stored Proc"
- Reply: Adam Machanic: "Re: Encrypted Stored Proc"
- Messages sorted by: [ date ] [ thread ]
Date: Tue, 9 Nov 2004 08:14:05 -0800
use northwind
go
create procedure dbo.usp_proc1
with encryption
as
set nocount on
return 0
go
declare @objname sysname
set @objname = 'usp_proc1'
select
encrypted
from
syscomments
where
[id] = object_id(@objname)
go
drop procedure dbo.usp_proc1
go
AMB
"L Gonzales" wrote:
> Is there an easy way to identify how many stored procs are
> encrypted in a database?
>
> TIA.
>
- Next message: Scott Ivey: "Re: [DBNETLIB][ConnectionOpen (Connect()).]SQL Server does not exist or access denied."
- Previous message: Aaron [SQL Server MVP]: "Re: Text Files"
- In reply to: L Gonzales: "Encrypted Stored Proc"
- Next in thread: Adam Machanic: "Re: Encrypted Stored Proc"
- Reply: Adam Machanic: "Re: Encrypted Stored Proc"
- Messages sorted by: [ date ] [ thread ]
Relevant Pages
|