Viewing 15 posts - 406 through 420 (of 9,641 total)
Your derived table query isn't returning any rows for those periods so there is no row to apply ISNULL to. You need to provide data for those months with...
June 9, 2015 at 9:58 am
Alvin Ramard (6/2/2015)
Brandie Tarvin (6/2/2015)
So long as no one brings up the whipped cream incident, everything should be fine.What about the pork chops? Are they still an option? 😉
With...
June 2, 2015 at 12:27 pm
Grant Fritchey (5/22/2015)
I understand that some cultures look at it very differently than most Western European-based ones do. There's...
May 22, 2015 at 10:16 am
Unfortunately you can't do it natively, you have to use javascript. Here's a link on how to do it, http://www.bidn.com/blogs/BrianKnight/ssis/972/ssrs-action-to-open-a-url-in-a-new-window.
May 22, 2015 at 8:33 am
When running in SSMS I believe it is running under the SQL Server Service account. I know it is not running under the SQL Agent Service account and that...
May 22, 2015 at 8:24 am
GilaMonster (5/22/2015)
Jack Corbett (5/22/2015)
Question, how many of you work in an open work space? If you do, what are your thoughts?
Hate it with a passion. Noisy, crowded,...
May 22, 2015 at 7:37 am
Question, how many of you work in an open work space? If you do, what are your thoughts?
My employer just finished a renovation and I'm moving into an open...
May 22, 2015 at 6:35 am
jasona.work (5/22/2015)
Everyone smart took the day off, everyone who couldn't take the day off is trying to figure out how...
May 22, 2015 at 6:32 am
ROW_NUMBER is usually the best way to do something like this. Here's an idea:
DECLARE @test-2 TABLE
(
Auto_ID int,
...
May 20, 2015 at 6:19 am
GilaMonster (5/14/2015)
Over the years I've been very careful to keep my blog completely non-commercial, no adverts, no plugs for my company, nothing. Partially because when I...
May 14, 2015 at 6:38 am
Vertigo44 (5/7/2015)
1, 366834292, 333040947, 8
2, 366834292, 333054601, 2
3, 367096281, 333293527, 2
4, 367096281, 333282008, 8
5, 368005352, 111111111, 2
6, 369005341, 111111100, 8
I need from this subquery only the NOTE_IDs that...
May 8, 2015 at 6:46 am
See the answer in your other post, http://www.sqlservercentral.com/Forums/Topic1683862-392-1.aspx
May 8, 2015 at 6:34 am
Eirikur Eiriksson (5/5/2015)
Quick question, why not create the symmetric key in the destination database?😎
I haven't done much with encryption so I wasn't sure if this was possible and it was...
May 6, 2015 at 6:00 am
Since the Key and Certificate reside in the other database you need to change context to that database. I believe you can do it using Exec sp_executesql something like...
May 5, 2015 at 11:58 am
Can you provide the DDL for the table?
Is the Company Name in the same table?
You could do something like this:
IF OBJECT_ID('tempdb..#company', 'U') IS NOT NULL
BEGIN;
...
May 5, 2015 at 11:24 am
Viewing 15 posts - 406 through 420 (of 9,641 total)