How do I find sql profiler?
When a dml statement is executed, in which cursor attributes, the outcome of the statement is saved?
Where the Pre_defined_exceptions are stored ?
What is difference between procedure and trigger?
what are the differences between char and nchar? : Sql dba
How can I create a table from another table without copying any values from the old table?
What does select * from mean in sql?
what are the advantages a stored procedure? : Sql dba
How can we overcome recursive triggers in SQL?
What is the difference between UNIQUE KEY and UNIQUE INDEX?
ename empno deptno amar 1 10 akbar 2 20 anthonny 3 30 jonathan 4 40 write a procedure to dispaly the column values ina row separated by a deleimiter eg - input - select ename from emp '|' output - amar|akbar|anthony|jonathan input - select empno from emp '@' o/p - 1@2@3@4 input - select deptno from emp '/' o/p - 10/20/30/40 Pls answer this questn.
How to add Foreign key in a table after the creation of the table?
what is a foreign key ? : Sql dba