Viewing 13 posts - 1 through 13 (of 13 total)
Thank you, Luis. I have had a chance to look it over. I am comfortable with most of it, but still looking over a few pieces of the code to...
October 30, 2015 at 1:27 pm
also, I will be adding columns to these rows after I get the rows to display.....they will be calculations based on values in other tables.
October 30, 2015 at 12:04 pm
Here is what I have so far:
SELECT
prod.ID,
prod.Machine,
prod.StartTime,
DATEADD(dd, DATEDIFF(dd, 0, prod.EndTime), 0)
FROM
prod
WHERE
...
October 30, 2015 at 12:03 pm
nevermind.....i got it!!! just put the query in the WITH, aliased that. then followed through the example.
thank you soo much!!
August 12, 2013 at 6:37 pm
okay....had a chance to get back to this....sorry about the delay.
in the from clause there are 3 table joins. I see that you use raw_data and then reference this again...
August 12, 2013 at 6:25 pm
not that familiar with CTEs. I was able to make this work and was able to follow it, but could it be done without a CTE? For example, just joining...
August 10, 2013 at 8:38 pm
I ended up going with the first suggestion by Want a cool Sig and it worked just as I needed.
I will also try the others to see if I...
February 22, 2013 at 5:41 am
THAT DID IT!!!
Thank you so much for the help. It has been over a day of looking around online for why this was erroring out and I had a...
October 18, 2012 at 11:35 am
This makes sense...since there is no data present for today's date......
Would this be done in the stored procedure or in the control flow? What is the best way to do...
October 18, 2012 at 11:14 am
Yes...Here is what is under the Result Set
Result Name = 0
Variable Name = User::XMLVariable
When I look at the variables:
Name = XMLVariable
Scope = Package
Data Type = String
I did a test with...
October 18, 2012 at 11:03 am
After countless hours of troubleshooting, I found the problem that caused the filtering not to work. The table that I was accessing that stored the team name (in this case...
April 13, 2009 at 6:48 pm
Hello Jack,
Yes, I did some research online over the weekend and I came across that suggestion. I tried the following:
A
"A"
=A
="A"
None of which worked, but when I ran the query to...
April 13, 2009 at 6:03 am
Viewing 13 posts - 1 through 13 (of 13 total)