Viewing 11 posts - 1 through 11 (of 11 total)
Jeff Moden (2/14/2011)
Why not validate and mark all the failures at once using set based SQL? Then you could actually create a report...
February 15, 2011 at 7:20 am
Tam Le 7 (2/14/2011)
Subquery returned more than 1 value. This is not permitted when the subquery follows...
February 14, 2011 at 1:31 am
The case is the following:
On a .NET app I have a button with which a SP is executing and creates an XML Exported file.
So I created a SP with a...
February 13, 2011 at 4:21 pm
Thank you for your answers.
My initial question is:
How can I check every value which returned from my subquery and return a RAISERROR for every check from inside the SP.
You tell...
February 13, 2011 at 4:00 pm
Yes, i want to:
2) Raise one error per subproject with a null start date
I'm catching every RAISERROR from .NET application
(catch (SqlException ex)
February 13, 2011 at 3:40 pm
I want to check IF EXIST a NULL SUBPROJECT START DATE (checking all SUBPROJECTS) and THEN to RAISERROR.
February 13, 2011 at 3:26 pm
It returns 25.00 with "." separator.
I want to have comma separator (",")
Any help?
August 30, 2010 at 2:34 am
OK, I found the solution.
It's really a recursive query, but easier that you make it:
SELECT e1.RES_UID, e1.RES_NAME, e1.RES_TIMESHEET_MGR_UID, e2.RES_NAME AS TimesheetManagerName
FROM MSP_RESOURCES e1 LEFT JOIN MSP_RESOURCES e2 ON e1.RES_TIMESHEET_MGR_UID =...
April 5, 2010 at 11:16 am
The solution is not working for some reason, so I'm still having problems.
I don't know why.
Any further help?
April 5, 2010 at 10:30 am
More info:
Table name: MSP_RESOURCES
EmployeeID: RES_UID (PK, UID(uniqueidentifier)
EmployeeName: RES_NAME (NAME(nvarchar(255)),not null)
EmployeeApprover: RES_TIMESHEET_MGR_UID (UID(uniqueidentifier),null)
Do I need to create a new table and select from there?
April 5, 2010 at 7:41 am
Viewing 11 posts - 1 through 11 (of 11 total)