Yes, but the powers that be are very particular about what views can be created and stored as well as whether they feel like bothering, so in the long run, it is easier just to create two queries. That's life when you don't have control over things. :-(, but I am cool with it as it means less...
Well This is why I posted here. It isn't that easy. I know how to write SQL, however this is a special case due to this tool we use for users to write their own queries. It is limited to keep them from building queries that would bring down the system.
Anyway, thanks for trying.
Yes, but I want it to show a listing like the following:
Entry 5
Exit 3
I am working with a SQL tool that our clients are using and it is very limited. So I was trying to figure out a simple way of producing this. I may just end up being that I have to create two queries, one for Entry and...
Thanks for the responses.
Here is what I am trying to achieve...
I have two tables like this:
Enroll table
Enrollid EntryID Exit ID
1 111 121
2 112
3 123 128
4 124 156
5 125...
Hi Everyone,
I need to know if this is possible?
SELECT
CASE
WHEN IDI.ID = E.ENROLLID THEN 'Entry'
WHEN IDE.ID = E.EXITID THEN 'Exit'
END AS Test
FROM
Enrolled E
INNER JOIN TestTable IDI ON E.EnrollID = IDI.ID
INNER JOIN TestTable IDE ON E.ExitID = IDE.ID
If not, is there a way to do...
Hi,
Hi have a table that is grouped and setup similar to this...
Dates..............................Lots.............Sets
01/01/2013 06:25:20..........1................A1
01/02/2013 04:25:20..........1................A1
01/03/2013 05:10:18..........1................A1
01/03/2013...
I am trying to do a comparison of material loaded to different machines at different times/dates. I need to find 8 minute gaps and 1 hour gaps in dates.
Here is an example of data:
<code>
Row_id Date LotID Amount Machine
59ACD 2013-07-10 08:50:21.000 209...
Hi Everyone,
I also posted this under Oracle, but I know more about SQL Server, os it should be easy to translate any differences...
I have something like the following...
Date ........ Hours ........ 980X
03/08/13 ........ 4 ........ 98
03/08/13 ........ 2 ........ AM
03/08/13 ........ 2...
Hi Everyone,
I have something like the following...
Date ........ Hours ........ 980X
03/08/13 ........ 4 ........ 98
03/08/13 ........ 2 ........ AM
03/08/13 ........ 2 ........ NULL
03/08/13 ........ 3 ...
Hi,
I have two datasets, one from SQL Server and the other from Oracle. The Oracle dataset is for the main report and the other is for a subreport. I am new to Reporting Services, so I don't have a clue how to get through this...
In the subreport, I have created two perameters. One for...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.