Viewing 3 posts - 1 through 3 (of 3 total)
Thanx Karl
It will work, But Is there any option to make trigger run for each row even I execute batch update
e.g
Update mytable set statuscode='ACT' where statuscode is null
If above query will affect...
April 11, 2006 at 5:30 am
Hi
Try to move log file to another location and while attaching database files specify only .mdf file. If SQL Server Creates new log for you, you will be lucky!!!
April 2, 2006 at 11:18 pm
Hi Neetu
Use this query to get required output,
select year(DateEntered)as yr ,branch,count(*) as TRec ,NULL as YearlyTotal
from stat
group by year(DateEntered),Branch
union
Select NULL,NULL,NULL, count(*) as YearlyTotal
from stat
group by
year(DateEntered)
Hope this will work
Vikas
March 29, 2006 at 2:51 am
Viewing 3 posts - 1 through 3 (of 3 total)