Viewing 15 posts - 16,741 through 16,755 (of 39,901 total)
Sorry, yes scoped to SQL only. Tables/views/procs/functions. Not .NET code, which isn't handled in SQL Azure. That would be in Windows Azure.
March 4, 2011 at 9:52 am
Takedown submitted to WordPress and the person's company.
March 4, 2011 at 9:47 am
I have submitted a note to WordPress to remove this.
March 4, 2011 at 9:38 am
I concur with Sean. If I have
create procedure MyProc
@param1 int = null
, @param2 int = null
, @param3 int = null
as
If @param1 is not null
insert into...
March 4, 2011 at 9:27 am
The OUTPUT clause is a great way to handle this
March 4, 2011 at 9:24 am
You have two choices.
1. Use all 14 parameters, set them to NULL as a default, and insert them or process them as needed.
2. Use some encoding like XML in a...
March 4, 2011 at 8:54 am
In addition, why do you think this job is taking up all the CPU? Have you traced this when you start the job?
March 4, 2011 at 8:48 am
I don't think anyone would ever want to lose data, but it's possible and requires some expense to avoid. Synchronous mirroring is the only way I see to guarantee no...
March 4, 2011 at 8:21 am
I would have sworn that the RAID 1+0 was 4 in Wikipedia, and I have submitted a correction.
March 4, 2011 at 8:18 am
Sorry, it's low priority when compared with other things. It's rarely reported and I answer questions almost daily and rarely see it as well.
March 3, 2011 at 11:28 am
Ah, perhaps that wasn't a great picture. I thought it was funny. It came from a SQL Saturday presentation by Kevin Kline.
March 3, 2011 at 11:27 am
I leave for a few days and this thread starts to sound like SQL-Seuss
March 3, 2011 at 10:07 am
Might read this and see if it helps: http://www.sommarskog.se/query-plan-mysteries.html
March 3, 2011 at 9:58 am
Viewing 15 posts - 16,741 through 16,755 (of 39,901 total)