About 40,400,000 results
Open links in new tab
  1. How to list all objects of a particular database in SQL Server

    I would like to list all objects of a particular database in SQL Server. I created a query as shown below: select name, type_desc from sys.objects WHERE type in ( 'C', 'D', 'F', 'L', 'P', 'PK', 'RF', 'TR', 'UQ', 'V', 'X' ) union select name, type_desc from sys.indexes order by name

  2. Different ways to search for objects in SQL databases - SQL Shack

    Jun 29, 2020 · This article explores various ways to search for database objects in SQL database such as tables, stored procedures, functions, and views. SQL Server has many database objects such as table, view, stored procedure, function, constraints, rule, Synonym, triggers.

  3. Find an object in SQL Server (cross-database) - Stack Overflow

    You'd start with a table called SysObjects (each database has one) that has the names of all objects and their types. One could search in a database as follows: Select [name] as ObjectName, Type as ObjectType From Sys.Objects Where 1=1 and [Name] like '%YourObjectName%'

  4. SQL to search objects, including stored procedures, in Oracle

    May 12, 2009 · From the View menu, choose Find DB Object. Choose a DB connection. Enter the name of the table. At Object Types, keep only functions, procedures and packages. At Code section, check All source lines.

  5. Check the list of all objects present in Oracle Database.

    Jul 11, 2021 · Find the list of objects present in Oracle Database. DBA_ refer to all objects in database, ALL_ refer to which object having access privilege’s to user plus own created objects, USER_ refer to only own object created you can see. Find the objects present in particular schema in Oracle. List all the dictionary views:

  6. How to Search for Database Objects, Table Data, and Value in …

    Aug 20, 2022 · Fortunately, SQL Server provides various methods for searching for objects and text within the database. The sys.objects view provides information about all objects in a database, including tables, views, stored procedures, functions, and more.

  7. Searching for database objects using SQL Server Management

    May 25, 2016 · Have you ever experienced the need to find a stored procedure, a table or a view in a large SQL Server database where the only thing you remember is part of the object name? I have had that experience and in this tip I will show you a quick way to find database objects using SQL Server Management Studio .

  8. Query SQL Server sys.objects for Database Objects Information

    Dec 20, 2023 · The following query statement shows how to list the objects in an SQL Server database. Replace database_name with the name of the database for which you seek metadata. select * from database_name.sys.objects

  9. List out all objects from all the databases by using column string

    Mar 15, 2022 · You can use system catalog view sys.objects to view all objects in a SQL database. You can also use SSMS in-built object search functionality to find out specific objects across all online databases in SQL instance.

  10. SQL SERVER – Find Referenced or Referencing Object in SQL …

    Dec 2, 2012 · If you do not have SQL Server 2012 here is the way to get SQL Server 2012 AdventureWorks database. Here we are finding all the objects which are using table Customer in their object definitions (regardless of the schema). The above query will return all the objects which are referencing the table Customer.

Refresh