Viewing 15 posts - 46 through 60 (of 61 total)
Ok, Thanks a bunch man!
This:
SELECT FieldID, FormID, Name INTO Temp1 FROM dbo.FormFields
SElECT EventID, FieldID, UserID, Response INTO Temp1Response FROM dbo.FormFieldResponse
IF EXISTS (SELECT Name
FROM sysobjects
WHERE Name =...
June 28, 2005 at 8:14 am
Yep, It just returns records from the Field, table join the FieldResponse table, Does not care what... |
June 28, 2005 at 6:27 am
But that's not gonna work for any FormID number, will it?
June 27, 2005 at 8:54 pm
Cool,
Thanks man! But is it possible doing it w/o knowing FormID? Can you do it so that it grabs it automatically depending on FormID?
Or maybe it's easier to output it...
June 27, 2005 at 3:28 pm
Well we are planning eventually doing that.
If I shrink DB to like 20-30 Forms with 20-30 FormIDs - can dynamic sql handle that?
If so can you help me make it...
June 27, 2005 at 12:29 pm
Yes, exactly, I want to return data across all FormIDs.
Thanks so much for your help man. I know it's a lot.
June 27, 2005 at 11:39 am
It would be nice if you can tell me where/how to integrate it into that script from T-SQL section.
June 27, 2005 at 11:38 am
I needed to list something like:
| EventID
| 1 | <-
| 2 | <-
| 3 | <-
| 4 | <-
| 5 | <-
I know approach is terrible - someone wrote the code...
June 27, 2005 at 10:43 am
Ok,
I understand. Sorry I paste code with missing parts... that's not the point though.
I need to output table with all FormIDs - we have over 300 of them. I just...
June 27, 2005 at 10:34 am
I meant dynamic like - all the data changes all the time. Records, amount of fields and etc.
Well, that's what I did with it to get all the proper data...
June 27, 2005 at 9:53 am
Well,
I need to put values of EventID into a comma-separated string. Then split() and declare as new variable.
Then it will be passed to a procedure.
June 27, 2005 at 9:38 am
Thank you so much for responding.
This is great help.
I understand everything, except how can I make it work with dynamic sql tables? I mean 2 original tables in SQL are...
June 27, 2005 at 6:34 am
Here is the image of a final result:
Sorry it didn't work last time.
People talk about pivot - but i have no clue how to do...
June 25, 2005 at 11:49 am
Relationship is: Table 1 has Column "Name" - that's name for each field on Dynamic Form(already have written dynamic form upload) which can be textarea, and other inputs.
Now "Response" on...
June 24, 2005 at 2:35 pm
Viewing 15 posts - 46 through 60 (of 61 total)