Viewing 14 posts - 1 through 14 (of 14 total)
And PS....I know this is terrible database design...have to work with what I was given unfortunately.
<MAIN QUERY>
<cfquery name = "getData" datasource = "db">
SELECT id, name, date FROM table
</cfquery>
<LOOP>
<cfloop query =...
October 22, 2014 at 9:09 am
May be better suited for developers with CF experience. I'm an SQL developer, not CF so had this project been given to me off the bat I would've had...
October 22, 2014 at 9:08 am
PS - I understand the queries within the original loop do not match, it was a copy and paste effort from my original code to quicken things up 😀
October 22, 2014 at 8:51 am
Vijay,
I would take a look at this workbench off of SimpleTalk. It explains everything you are looking for and then some in depth, and also shows multiple ways of...
May 28, 2010 at 7:27 am
Thank you for a great article, Dave. I never really thought of using any of these commands as I normally would place data into temp tables to run JOIN...
May 21, 2010 at 12:26 pm
Thanks Lowell. The 811 after EDI refers to the format of the feed (e.g. EDI 810 and EDI 811 are invoicing EDI feeds in X12). There are others...
May 19, 2010 at 8:55 am
Thanks, Jeff! I appreciate the kind words and the welcome aboard.
Jeffrey Williams-493691 (4/30/2010)
May 4, 2010 at 7:31 am
Thanks, Seth! After reading these forums for months, I know how much easier it makes it on those who are willing to help when you have the code at...
April 30, 2010 at 3:22 pm
Dave - Not a bad idea on utilizing Views and combining them into one master table. This still, however, would require MAJOR development cycles as the data is used...
April 30, 2010 at 1:11 pm
David Portas (4/30/2010)
April 30, 2010 at 1:05 pm
Lowell (4/30/2010)
David Portas (4/30/2010)
Why would you do that? Use one table with a month number column and you won't have to use dynamic SQL at all.
excellent point, David. sometimes you...
April 30, 2010 at 1:02 pm
Because that's not the way the system is designed. And querying from our CF front-end application is much faster on a 15,000,000 record table rather than a 180,000,000+ record...
April 30, 2010 at 12:49 pm
Lowell - That was it! For some reason I thought that first single quote would terminate the entire statement and not follow through with the rest of my CASE...
April 30, 2010 at 12:02 pm
I had a similar issue in our production environment where our transaction log was growing to unacceptable sizes after bulk data loads. In my case, the transaction log was...
April 19, 2010 at 11:13 am
Viewing 14 posts - 1 through 14 (of 14 total)