Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by FALCONSEYE

  1. FALCONSEYE

    ColdFusion microservices with REST

    I have been looking all over for some samples with CF microservices done with some REST APIs without a framework like coldspring. Any help? Thanks in advance. ColdFusion Ninja for hire.
  2. FALCONSEYE

    Error: no known VMs. (check for corrupt jvm.cfg file) !!! How I Fixed It !!!

    thread232-1177512 I came across this thread posted a while back. I did a .car deploy from a QA box on my localhost. Then, I couldn't start CF application server. After looking at windows event logs, I noticed some errors. When I looked at coldfusion-out.log file, I noticed the following error...
  3. FALCONSEYE

    query question : get previous, current and next teams from 1 table

    I am trying to get a historical representation of the previous, current and next team information broken down by start and end dates. Here is the sql fiddle. My output will look like : name | previous team | previous team start date | previous team end date | current team | current team start...
  4. FALCONSEYE

    select records within 12 months of each other

    Hello, I am trying to select all the B types within 12 months of each other. Here is the sql to create the table. I need to select all type B s that are within 12 months. In this case, 5,4, and 3. How do I do this? SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO...
  5. FALCONSEYE

    question about a query [ get all null and filled answers by question and category ]

    Thanks. This does the trick. SELECT u.*, c.*, q.*, a.* FROM tbl_category AS c JOIN tbl_questions AS q ON q.categoryID = c.categoryID CROSS JOIN tbl_users AS u LEFT JOIN tbl_answers AS a ON a.questionID = q.questionID AND a.userID =...
  6. FALCONSEYE

    question about a query [ get all null and filled answers by question and category ]

    Hello, I have the following tables. I am trying to get a join of these 4 tables where it will list all the questions, answers even if the user didn't answer anything along with user and category. any help? CREATE TABLE [dbo].[tbl_users]( [userID] [int] IDENTITY(1,1) NOT NULL, [firstName]...
  7. FALCONSEYE

    New coldfusion 10 installation upgrade on coldfusion 8 server running Server 2003

    Make sure IIS is pointing to the right dir. I am running 9 and 10 side by side. http://www.serverintellect.com/support/iis6/alt-home-dir.aspx hope it helps... ColdFusion Ninja for hire.
  8. FALCONSEYE

    specified CFC could not be found

    i created a test file to include the cfinput within a cfform. copy+pasted your cfc, changed your query, and everything run fine. can you create a test page and hit this cfc directly? ColdFusion Ninja for hire.
  9. FALCONSEYE

    self join with rank

    i am sure there is a better solution but this one works for now... select distinct branchNumber as num from dbo.branches where branchNumber = 115 union select branchNumber as num from dbo.branches where masterBranch = 115 select distinct branchNumber as num from dbo.branches where...
  10. FALCONSEYE

    self join with rank

    I have the following table: USE xxx GO SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[branches]( [branchNumber] [int] NULL, [isSub] [char](1) NULL, [masterBranch] [int] NULL ) ON [PRIMARY] GO SET ANSI_PADDING OFF GO insert into branches...
  11. FALCONSEYE

    cfscript and javascript

    Try the following: var x = document.forms["myForm"]["issuedescription"].value; ColdFusion Ninja for hire.
  12. FALCONSEYE

    sql help

    this problem is solved. off to the next one... ColdFusion Ninja for hire.
  13. FALCONSEYE

    sql help

    :) see person3: he has accID 1 and 5. Your query returns person3 and person4. I need only person4. thanks ColdFusion Ninja for hire.
  14. FALCONSEYE

    sql help

    select * from tmp_p p1 where name not in ( select name from tmp_p where accID = 1 ) and name not in ( select name from tmp_p where accID in (2,10) ) order by p1.name this kind of works but I don't want to use the name field. instead, i want to use the personID field. ColdFusion Ninja for...
  15. FALCONSEYE

    sql help

    I have the following table called tmp_p : CREATE TABLE xxx.TMP_P ( PERSONID NUMBER, NAME VARCHAR2(20 BYTE), ACCID NUMBER ) TABLESPACE xxx PCTUSED 0 PCTFREE 10 INITRANS 1 MAXTRANS 255 STORAGE ( INITIAL 64K NEXT 1M...

Part and Inventory Search

Back
Top