Viewing 15 posts - 46 through 60 (of 174 total)
I am surprised I've never heard about BIML previously. I wonder if a lot of folks out there use it or is this something new?
July 18, 2013 at 1:47 pm
I am just starting to learn DAX. Reading my first book on the subject and this article is very timely and informative.
May 2, 2013 at 4:52 pm
Here is the solution to this problem, which works correctly (credit to Steve Kass: http://stackoverflow.com/users/139164/steve-kass):
WITH cte(CarID,hier) AS (
SELECT CarID, CAST('/'+LTRIM(CarID)+'/' AS varchar(max))
FROM Car
WHERE CarName...
March 22, 2013 at 11:07 pm
Thank you, but as I said, the Cars and CarParts was used by me simply to illustrate the problem. The actual database has nothing to do with either and...
March 22, 2013 at 4:53 pm
Yes, that is correct. By "share parts" I mean that they share a part by the same name. That is why my "attempted" recursive query does a JOIN...
March 22, 2013 at 1:24 pm
Lynn,
Thank you for your reply! The query you listed will return all of the cars and their parts, but this is not what I am after. My goal...
March 22, 2013 at 11:56 am
First of all thank you for replying! It's close, but not quite. As I said, I need to get the entire chain Car -> CarPart -> Car ->...
March 22, 2013 at 11:16 am
Great "war" story (and very educatonal)! Thank you for sharing.
March 13, 2013 at 6:13 pm
Thank you for the article! Note that if you are using SQL 2012 there is now a way to invoke SSIS package from T-SQL without having to resort to...
February 7, 2013 at 2:54 pm
Great article. Thank you! Small typo in the paragraph right before "Conclusion":
The original row had four instances of the (<People> should be <Person>) element, and the...
January 31, 2013 at 8:15 pm
Lynn,
Thank you very much for such super-fast response. Using the latest Jeff's function totally solved the issue! (not to mention the fact that I was three revisions behind).
You...
January 18, 2013 at 6:40 pm
Thank you very much for the article! This is a great set of tips. I am currently working on just this kind of scenario -- researching a large...
December 22, 2012 at 7:33 pm
Thank you for the article, this was very interesting! I think there is a small, but important typo towards the end -- after the list, which shows the order...
December 17, 2012 at 2:06 pm
Thank you for the great article! .NET world has always been a bit of a mystery to me (as I suspect for many other DB folks), I would only...
December 6, 2012 at 5:32 pm
Viewing 15 posts - 46 through 60 (of 174 total)