← Back to Knowledge Base

KB #240094: How to capture output of sp_n_enumfiles into a table

⏱️ 1 min read
 

Type:

Information
Summary:
API sp_n_enumfiles gives a report of encrypted database files currently attached to SQL Server. This KB Article gives instructions on how to capture the result set into a table.

 

Additional Information:
The following example puts the result set of sp_n_enumfiles into a temporary table named #dbfiles and checks to see if any files containing the name ‘northwind’ are included

Create Table #dbfiles(dbfile varchar(128))
Insert #dbfiles EXEC sp_n_enumfiles
select dbfile from #dbfiles
IF EXISTS (SELECT dbfile FROM #dbfiles WHERE dbfile like '%northwind%') begin
  select 'northwind found'
end
drop table #dbfiles

Was this article helpful?

Related Articles

KB #240085: SQL will not start – related articles

Type:  Information Summary: SQL will not start after securing with Encryptionizer. Here are the related…

KB #240053: SQL Server or encrypted databases not accessible after configuring Encryptionizer

Some explanations of why SQL Server may not start after installing and configuring Encryptionizer for…

KB #240135: Key Recovery Instructions

Type: Info Summary: You have lost the information regarding encryption keys, and need assistance to…

Still need help?

Our support team is here to assist you.

NetLib Security
AI Assistant · Online
Hi! I'm the NetLib Security assistant. I can answer questions about our encryption solutions, HIPAA compliance, Encryptionizer, and more. How can I help you today?