Viewing 15 posts - 1 through 15 (of 56 total)
Got job opportunity for SSIS Developer. Also have another for Database Developer but haven't started the process. With SSIS Developer, salary will be lower than the DB Developer.
Which one would...
October 27, 2014 at 11:45 pm
Feel free to share your experiences as well.
Thanks.
October 24, 2014 at 5:21 am
Thanks Koen for providing insights.
I had worked with SSRS. Little experience with SSIS. No experience with SSAS. My experience is on building databases and reports of web applications.
I'm also...
October 24, 2014 at 5:10 am
Strange thing that has been observed using the same query. It works on my local host (SQL 2008 R2) while it does not on dev environment (SQL Server 2005 Express).
I...
November 25, 2012 at 9:01 pm
Moved this thread to General Discussions: http://www.sqlservercentral.com/Forums/Topic1388283-149-1.aspx
November 24, 2012 at 12:58 am
Hi there,
Have you tried putting END keyword in CASE?
CASE WHEN <column> IS NOT NULL THEN 'Text' END
Just trying to help.. 😛
June 13, 2011 at 3:19 am
Hi there,
I was also faced with the same situation a week ago.. GROUP BY did the trick.. I'm not sure if this would be performance-wise so try testing it to...
October 21, 2010 at 5:31 am
Hi there,
This may also work.. See if this helps..
;WITH cte AS
(
SELECT [Date], [Level], ROW_NUMBER() OVER (ORDER BY (SELECT NULL)) AS id
, ROW_NUMBER() OVER (ORDER BY (SELECT NULL)) - ROW_NUMBER() OVER...
September 29, 2010 at 7:10 am
Quatrei.X (9/13/2010)
I don't really know which among these is the best implementation or maybe you guys could provide something better. "mine...
September 14, 2010 at 8:33 am
GilaMonster (9/12/2010)
XML? Why oh why?What's wrong with a properly normalised database design?
I think using XML datatype model would be more efficient.. I need to test them both though..
The query that...
September 14, 2010 at 8:06 am
Hi there,
Is this what you're trying to do?
select * from Table1 WHERE column1 NOT IN (
SELECT column1 FROM Table2
UNION ALL
SELECT column1 FROM Table3
UNION ALL
SELECT column1 FROM Table4
)
Hope this helps.. 🙂
September 13, 2010 at 11:10 pm
When i was searching for EAV, I came across with this article by Joe Celko (thanks!):
http://www.simple-talk.com/sql/t-sql-programming/divided-we-stand-the-sql-of-relational-division/
This presents different methods for relational division.. To my surprise, the topic under...
September 12, 2010 at 4:29 am
@joe,
Thank you for showing me the right direction.. So, this is called EAV model.. I'll stay away from this method and migrate to XML.. With proper xml indexes,...
September 12, 2010 at 4:04 am
@Quatrei
Thanks you very much for your help.. Your code is much cleaner and faster now! And this also does not use dynamic SQL.. 😀
However, I just have this one challenge...
September 9, 2010 at 2:31 am
I used EXCEPT and INTERSECT to avoid dynamic SQL.. Will this impose performance issue than its dynamic SQL counterpart? Please advise.. I would really appreciate your input..
Thanks.. 🙂
September 8, 2010 at 7:14 pm
Viewing 15 posts - 1 through 15 (of 56 total)