Viewing 15 posts - 31 through 45 (of 55 total)
I'm sure this question maybe overlooked by those who don't know the "all–at–once operations" property of SQL.
February 28, 2013 at 7:17 am
I learned from question on 2/11, I read the question carefully this time. : )
February 26, 2013 at 12:05 am
So many back to basics in such a short question. 🙂
February 4, 2013 at 11:22 pm
Hi,
Example: a user has permission to insert, but denied on delete for tableA.
When user inserts a row into tableA > insert triggers fire.
When user deletes a row from tableA...
February 4, 2013 at 11:11 pm
Jeff Moden (1/28/2013)
C'mon, folks! Just look at the mess of code that a While loop makes for this! No one should be writing a While Loop for this!
Hi...
February 3, 2013 at 2:38 pm
Hi Lynn,
I like the solution you provided. Didn't thought of that.
January 27, 2013 at 12:34 am
Hi,
This solution is similar like other posts. this one is not very efficient but it's enough to solve the problem.
--goal: Output CombYr = 3/4/5
--Input: BegYr int, EndYr int
--assume inputs are...
January 27, 2013 at 12:30 am
Hi,
Here's one of the possible solution.
-- # of guests the hotel served on each day in December 2012
SELECT g.checkin AS [date], COUNT(*) AS [#of_guests_served]
FROM dbo.guests g
WHERE g.checkin BETWEEN CAST('20120101' AS...
January 26, 2013 at 11:33 pm
Hi,
the trigger is missing a begin catch & end catch block.
January 26, 2013 at 10:54 pm
1. No
2. Yes
I would love to attend a DBA boot camp. However, I think most of people wouldn't have the time or the resource to do so. Does anyone know...
July 17, 2011 at 2:37 am
I totally didn't know the answer for this one. I thought the answer is the same as the answer for mirroring question last month.
Good one!
July 9, 2011 at 12:53 am
Viewing 15 posts - 31 through 45 (of 55 total)