Viewing 15 posts - 106 through 120 (of 129 total)
Thanks, I solved my own question.
Here is what I did;
SELECT [2010AFE].AFE, [2010Projects].DirectorID, Director.DirectorID AS Expr1, [2010Projects].AFE AS Expr2, [2010Projects].ManagerID, Manager.ManagerID AS Expr3,
...
July 13, 2010 at 11:19 am
Well you are right then. I cannot use DateDiff for that.
What I need is to be able to compare the changes to the datebase from yesterday or day before to...
April 28, 2010 at 6:07 am
Thank you. I know it had to be something simple!
April 27, 2010 at 7:55 am
Me too. I greatly appreciate your assistance. And it is always good to learn something new at the same time.
Thanks,
April 23, 2010 at 6:27 am
YES!!! You are the Man!
Worked like a charm. I thank you for teaching me quite a bit in one little stored procedure.
Thanks for all of you time, and knowledge.
Brian
April 23, 2010 at 6:14 am
If I run the StoredProcedure from the ASP.NET page, it fails to complete because it runs out of memory.
I modified the Select statement to read the TOP 100 and the...
April 22, 2010 at 12:19 pm
EXEC yourProcedureNameGoesHere 'Redondo East'
Ok, the StoredProcedure part now runs without an error while in SQL server, however it is not returning just the location specified. It returns all of the...
April 22, 2010 at 11:33 am
If I delete the AND name = @WaySide it completes with the location name in the Wayside column.
April 22, 2010 at 10:45 am
It works with the same results. Wayside column results with NULL.
April 22, 2010 at 10:36 am
Ok, With the query looking like this;
SELECT ( SELECT name + ',' + state
FROM ...
April 22, 2010 at 10:03 am
Or did you mean to put the actual name of a location where the @Wayside is?
April 22, 2010 at 9:56 am
If I run the query this way, it works.
SELECT ( SELECT name + ',' + state
FROM...
April 22, 2010 at 9:53 am
Gianluca Sartori (4/22/2010)
( SELECT name + ',' + state
...
April 22, 2010 at 9:36 am
Gianluca Sartori (4/22/2010)
The parameter should be definded as float, if it holds float data and is compared to a float column.What value are you passing?
I am passing the name of...
April 22, 2010 at 9:23 am
Gianluca Sartori (4/22/2010)
Which datatype did you choose for the stored procedure parameter?Which table field are you comparing to the parameter?
I chose VARCHAR for the SP, and compared it to the...
April 22, 2010 at 9:10 am
Viewing 15 posts - 106 through 120 (of 129 total)