Viewing 15 posts - 316 through 330 (of 1,086 total)
October 26, 2005 at 9:57 am
What is the error that is generated?
(Also, why are you doing this?)
October 26, 2005 at 9:28 am
I am with RGR'us on this! You will end up jumping through hoops not only to populate a single table, but retrieving the data will become a nightmare - not...
October 26, 2005 at 8:42 am
Nope - not a bit. It was a poor assumption on my part that this application had an Access front end.
If you...
October 26, 2005 at 7:56 am
Last query defnetely cannot return expected result.
It does return the expected results...
Agreed about the table scan and use of index or statistics - yours is a better query. ...
October 26, 2005 at 5:36 am
Try this: go to the query that is failing. Look at it in Design View. You will see in the upper left hand corner, (I am doing this from memory,...
October 26, 2005 at 5:25 am
I do not think that returns the requested results...
DECLARE @Table1 TABLE( id1 integer,
data1 integer)
DECLARE @Table2 TABLE( id2 integer,
data2 integer)
INSERT INTO @Table1...
October 25, 2005 at 6:01 pm
Glad to help! [I just updated the post by thinking about why the results returned as they did - I wrote a...
October 25, 2005 at 4:28 pm
The more I think about this, the more it makes sense. Microsoft states that old join style using *= will return "ambiguous" results. This is a proof case!
You have an additional...
October 25, 2005 at 4:15 pm
I have tried two possible solutions, as I am not sure if you are always using lastname in your query... (I couldn't really test this, since our database is not...
October 25, 2005 at 3:47 pm
I cut my teeth learning programming during a C class. The teacher was incredible in showing fundamentals! He ended up being able to teach 3 semesters... it was the best! ...
October 25, 2005 at 3:30 pm
LOL..., good one!
October 25, 2005 at 9:22 am
"You keep thinkin' Sundance..., that's what you do best."
October 25, 2005 at 8:33 am
yeah - I had this one laying around and answered too quickly...
October 25, 2005 at 8:27 am
This will pump each value into a #TempTable. You can alter this to pass each variable back after it is seperated or you could create your own #TempTable in your...
October 25, 2005 at 5:27 am
Viewing 15 posts - 316 through 330 (of 1,086 total)