What are the restrictions applicable while creating views? : SQL Server Architecture
Explain alternate key, candidate key and composite key in sql server?
What's the difference between a primary key and a unique key?
Explain filestream storage of sql server 2008?
hi to all teachers,... Friends who write in the query mode Full text Search in Sql Server have experience Who make(Convert) this Stored Procedure as a normal Full text Search, which contains and .. Is used, into Advance of the tips I have thanked all friends perfection. Email : rezaafandi@yahoo.com Create PROCEDURE Sp_student @fname varchar(50), @lname varchar(50), @tel varchar(50), @code varchar(50), @adr varchar(50), @search_operation varchar(50), @totalRowCount bigint output AS begin if @search_operation = 'and' begin SELECT f3,f4,f5,f6,f7 FROM tb_student WHERE( f5 like '%' + @fname + '%' and f4 like '%' + @lname + '%' and f6 like '%' + @tel + '%' and f7 like '%' + @code + '%' and f3 like '%' + @adr +'%' ) select @totalRowCount = @@rowcount end
How many levels of sp nesting is possible?
What are the aggregate and scalar functions?
What is nolock hint in sql server 2008
What is de-normalization and what are some of the examples of it?
Explain what is dbcc?
What are the advantages of user defined function?
What is difference between restoration and recovery in SQLServer?
What does it mean to normalize a database and why would you do it?