Viewing 15 posts - 16 through 30 (of 51 total)
You forgetting people that I am using SQL Mobile Everywhere, so the use of sub-queries (only allowed in IN Clauses) isn't permitted, and @@ROWCOUNT doesn't work
September 19, 2006 at 4:49 pm
Hi, and thanks for the replies.
That seems to work on the desktop but not on my SQL CE Mobile for some reason. Maybe it doens;t like INNER JOINs on UPDATE...
September 12, 2006 at 8:53 am
Thank you very much for this Jeff. I forgot about my post, but just remembered it as I need it.
Top stuff
September 4, 2006 at 8:58 am
Maybe a snapshot of some data may help
QuestTreeUID ShortDesc LongDesc ParentUID QuestNodeUID
14SmartwasteSmartwaste ...
August 20, 2006 at 5:20 am
Query...
SELECT I.InspectionUID,
A.AnswerSetUID,
I.QuestionTreeUID
FROM tbl_NSP_Inspection I
RIGHT OUTER JOIN tbl_NSP_AnswerSet A ON (A.InspectionUID = I.InspectionUID)
WHERE (I.QuestionTreeUID = 2)
AND (A.Completed = 0)
AND (DATEPART(DAY, I.CreatedDate) < DATEPART(DAY, GETDATE()))
Results returned...
00089_0000002616,2
00089_0000002616,2
00089_0000002616,2
00089_0000002616,2
00089_0000002616,2
00089_0000002616,2
00089_0000002609,2
00089_0000002609,2
00089_0000002609,2
00089_0000002609,2
00089_0000002609,2
00089_0000002609,2
Query...
SELECT I.InspectionUID,
A.AnswerSetUID,
I.QuestionTreeUID...
July 18, 2006 at 7:26 am
Hi this query was for SQL Server Mobile and it doesn't make use of Sub-queries or TOP -
Thanks
Tryst
July 16, 2006 at 4:09 pm
There is a need for the time day as it is used for reporting on. I don't want to write this data into a separate column each time an inspection...
July 13, 2006 at 8:13 am
I want to show a list of inspections for each for each day where each Inspection undertaken has a calculated column added to it that determines the time difference between...
July 13, 2006 at 4:18 am
Hi stax68,
yes it is because the Description column in the table is Unique. Is this the problem then?
Tryst
July 13, 2006 at 3:30 am
Good morning all
Nagabhushanam Ponnapalli - your query works perfectly. But ideally, I'd like to wrap it up in a query without using a...
July 13, 2006 at 2:38 am
Hi, and thanks for the replies people.
One issue, I am to run this query on a handheld device against SQL CE 3, which doesn't allow stored proc's i believe. I...
May 24, 2006 at 7:01 am
Hi all,
and thanks for the replies.
If I had gone with the first two replies, that would have made my example, which was...
"I live in the town which is near this...
May 17, 2006 at 6:23 am
Hi and thanks for the reply Sergiy.
When I go into the Design Table screen and change the data type, the Generate Script button is greyed out until I press the...
April 20, 2006 at 5:05 am
Thats sorted it.
Thanks Jeff (and all).
Tryst
April 20, 2006 at 3:16 am
Hi, and thanks for the reply people.
I will attempt your solutions when I load up query analyer.
To answer Pam's question, I am trying to get the date from the datatime...
April 20, 2006 at 2:37 am
Viewing 15 posts - 16 through 30 (of 51 total)