Click here to Skip to main content
15,885,366 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more: , +
I am new to the SQL Server world and I am trying to  learn the meanings of following words in SQL
1. Object, 
2.Object_name, 
3.Object_type and 
4.Securable

If possible please explain with example.

Thanks in advance!


What I have tried:

I am learning SQL from scratch. I have no prior experience in coding or SQL.
If possible please explain with examples for better understanding. I tried Google, but that didn't help.

Thanks in advance!
Posted
Updated 4-Dec-17 18:00pm
v3

1 solution


1. A Information(example:-tables,SP,functions...) which is stored perminently
in Database is called Object.
2. All Object must have auto created unique address values while storing in database is
called Object_id.
3. There are different type of information such as objects is stored by user or System
(example:-tables(U),SP(P),functions...) is called Object_type.

SELECT Name,Object_id,Type,type_desc FROM SYS.OBJECTS;
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900