Viewing 7 posts - 46 through 52 (of 52 total)
I didn't Google much on the subject, assuming that you probably did but I did rifle through BOL and came up empty (or...
August 6, 2007 at 4:36 pm
Charles, could you share more about good design with CE?
I will have to rewrite a stand-alone, data entry heavy, laptop app for very occasionally connected users. This sounds like...
July 10, 2007 at 3:55 pm
Yes, I wondered. Wondered, too, why almost half the respondents chose a different answer...
July 9, 2007 at 1:05 pm
I wondered the same thing and came up with the following:
DECLARE @Output table( ID int, Code VARCHAR(25), Name VARCHAR(50), Salary Numeric(10 , 2))
INSERT INTO TempTable ( Code , Name, Salary)
OUTPUT...
July 9, 2007 at 1:02 pm
I've been googling for some backup info, and came across this statement on Devx: Choosing the Right Backup in SQL Server
In the backup file, SQL Server stores the...
December 22, 2006 at 3:33 pm
Try this:
select P.ParentID, Title, NumChildren
from ParentTable P left join
(select ParentID, NumChildren = count(*) from ChildTable group by ParentID) as C
on P.batch_id = C.batch_id
The above gives NULL...
December 7, 2006 at 5:55 pm
Melvin, that's an excellent idea that will be very helpful to me. One question, though. Why not assign all permissions through one cursor, like so?
DECLARE cursAllExecutables...
July 25, 2006 at 4:22 pm
Viewing 7 posts - 46 through 52 (of 52 total)