The database queries which object contains which fields . select * from sysobjects o, syscomments s where o.id = s.id and text like '%text%' and o.xtype = 'P' Replace text with the field you want to search Database query which object contains the table select o.name from sys.all_sql_modules s,sysobjects o where definition like '%table name%' and o.id = s.object_id Replace the table name with the table name you want to query You may also be interested in:
|
<<: Docker compose custom network to achieve fixed container IP address
>>: Webpack file packaging error exception
This article uses examples to describe how to cre...
In projects, batch operation statements are often...
** Detailed graphic instructions for installing y...
Overview The framework diagram of this article is...
Table of contents Overview How to achieve it Spec...
Table of contents Introduction Uses of closures C...
Use HSSFWorkbook in Apache.POI to export to Excel...
1. Cause The requirement is to display two lines,...
Related articles: 9 practical tips for creating we...
I'm very happy. When encountering this proble...
Index condition pushdown (ICP) is introduced in M...
Table of contents 1. Limit props to type lists 2....
Achieve results Code html <div class="css...
Preface Relational databases are more likely to b...
Preface: Use debugbar to view document code in iet...