What’s the distinction between dropping a info and taking a info offline?
Answer / Rina Kumari
Dropping an object (e.g., table, view, stored procedure) permanently removes it from the database. On the other hand, taking an object offline makes it temporarily unavailable for queries or transactions but keeps the structure intact. Taking an object online makes it accessible again.
| Is This Answer Correct ? | 0 Yes | 0 No |
Delete duplicate rows from a table without primary key by using a single query Table Employee empname salary A 200 B 300 A 200 C 400 D 500 D 500 Output should be A 200 B 300 C 400 D 500
What is Index ? Explain its Types?
what is cluster and nin-cluster index?
CREATE TABLE [dbo].[HPMS_CompetencyTypes](CompetencyType varchar(50) ) go create trigger hpms_create_Insert on HPMS_CompetencyTypes for insert as if Exists ( select * from [HPMS_CompetencyTypes] where CompetencyType=(select * from [HPMS_CompetencyTypes])) begin Rollback tran Raiserror ('duplicate value',12,6) go insert HPMS_CompetencyTypes (CompetencyType) values ('new') I'm new to trigger can any one tell me where is the issue. Please.
What are orphan records?
Why we use trigger in sql server with example?
What are xml indexes?
What will be the maximum number of indexes per table?
What are the joins in sql server? : sql server database administration
Which are the third-party tools used in sql server and why would you use them?
What are transactions and its controls?
What is data source object?
Oracle (3253)
SQL Server (4518)
MS Access (429)
MySQL (1402)
Postgre (483)
Sybase (267)
DB Architecture (141)
DB Administration (291)
DB Development (113)
SQL PLSQL (3330)
MongoDB (502)
IBM Informix (50)
Neo4j (82)
InfluxDB (0)
Apache CouchDB (44)
Firebird (5)
Database Management (1411)
Databases AllOther (288)