hi, how to match retrieve the unmatched records from 2 tables in which we dont have any primary key. example : table1 has 1,2,3,4,5 and table2 has 1,2,3,4,5,6,7,8,9,10 and i want the numbers from 6 to 10 to be displayed and should not come as null. i need the numbers. please reply as soon as possible.
4 8236hi, how to link a text file and a .rpt file in my tables of sql server and to retrieve those records for further use. reply me as soon as possible.
20711.can we set the more than 1 primary keys for a table? 2.please give me the difference between Cluster Index and non-Clustered Index 3.can we use query like this "Select * from Table1,Table2;"
8 9009CREATE 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.
2 4273i want to create procedure for create table in sql server 2005 for example create procedure create_table @table varchar(20) as create @table( id int, name char(20) ) but it will get error what is solution?
5 8031How to handle errors in Stored Procedures. I want to display a message to the user in the .aspx page that is calling a stored procedure in it's code behind. please help me.
2 4949
What are the differences between char and varchar in ms sql server?
Write a query to include a constraint, to check whether the employee salary is greater than 5000?
Is null in sql server?
What is the most common trace flags used with sql server?
What is CTE in SQL
What is resource governor in sql server?
what is the information that can be stored inside a bit column? : Sql server database administration
What is transactional replication?
Explain what are various ways to enhance the ssrs report?
What is the difference between sql server 2000 object owner and sql server 2005 schema? : sql server database administration
How can I know what locks are running on which resource?
Can you explain important index characteristics?
What are the differences between INNER JOIN, LEFT JOIN and RIGHT JOIN in SQL Server?
How many types of schemas are there?
Is a null value equal to anything? Can a space in a column be considered a null value? Why or why not?