I don't get this.
I have foreign keys set up on a table, which I disabled via:
ALTER TABLE <MyTable> NOCHECK CONSTRAINT ALL
When I view the results of EXEC sp_helpconstraint <MyTable>
I can see that the status_enable for all FK constraints is "Disabled"
However, when I run TRUNCATE Ta...
more >>
I have the following query that executes:
select count(*) as 'Total', location_id,
problem_type.problem_type_name 'Problem Type'
from job_ticket inner join problem_type on
dbo.problem_type.problem_type_id =
job_ticket.problem_type_id where
(report_date between '1/01/2005' and '1/31/2007')-...
more >>
Hi Experts,
I have a data in the following:
ID Person_name City_Name
1 Rajan Bangalore
2 Kumar Chennai
3 Vasu Bangalore
4 Senthil Mangalore
5 Santhosh Delhi
6 Murthy Chen...
more >>