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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: jarla
  • Order by date
  1. jarla

    Exact Contains Search

    Hello, professionals ;) We have Sql Server 2000 in our server and it have over 300.000 rows with comma-delimited list of keywords. We use contains -search because LIKE -search is too slow. Database handles picture information. But now we have big problem. This search: SELECT ID FROM...
  2. jarla

    Impossible query sorting?

    Hi! Is it possible to do this kind of query sorting, it sounds very difficult to me but I´m not sure about you professionals :) We have picture database with info about 210.000 different pictures. We have many different image producers and we try to serve pictures to customers so that every...
  3. jarla

    Generating referencenumber for bank

    Unfortunately not. When I asked about other countries reference numbers from my bank, they said that this kind of formula is in use only in Finland. But it would be good to know also about other countries same kind of numbers. I forgot to tell that that reference number in Finland must be at...
  4. jarla

    Generating referencenumber for bank

    webmigit: Your code worked great!! It´s just what I was looking for! Thank you very much! I had a Javascript -code earlier what I was using when I was writing invoices to customers manually. But now I wanted to have a system that generates that reference number to customer immediately when the...
  5. jarla

    Generating referencenumber for bank

    Hi! This could be hard to do, but I trust you professionals :) I need to make so called referencenumber from deliverynumber to use for bank -payment. In Finland the formula to generate the referencenumber is like this: Original number=1234 Those numbers must be multiply with the formula "7,3,1"...
  6. jarla

    cfloop list problem

    Hi! Again stuck with cfloop. Do you have any suggestions to this, I´ve tried almost everything I can... :( I have a cd-database which have all information about every cd in our cd-shop. There is a datafield "Tracklist". With help of "Valuelist" it´s easy to create nice list...
  7. jarla

    Name conflict with CFFILE COPY

    Thanks for all instructions! I decided to name all images that come by email, again with dynamically generated filename like this: <cfset newname=&quot;#timeformat('#Now()#', &quot;HHmmss&quot;)##randnumber#_#attachmentsent#&quot;> Then the code use that #newname# to copy the file to customer´s...
  8. jarla

    Name conflict with CFFILE COPY

    Thanks Ecobb, but in this situation it´s not usable because all attachments go first to same &quot;attachment&quot; -folder. After that the script use the CFFILE ACTION=&quot;COPY&quot; to copy attachments from attachmentfolder to customer´s own imagefolder. &quot;COPY&quot; -action don´t have...
  9. jarla

    Name conflict with CFFILE COPY

    HI! Once again little problem :( I have a gallery-page and customers can send their photos to the gallery also via normal email. Coldfusion use CFX_IMAP4 -tag to check specified mailbox every five minutes and it works good. BUT: Every customer have, of course, their own folder for pictures. No...
  10. jarla

    Controlling the size of cfmail

    Hi! Is there any way to control how big attachments user send via our cfmail -based system? We have picturebank with download and email -functions and our customers can add group of pictures to one zip -file and then send it via email to somebody. Or download the packet to their harddrive...
  11. jarla

    Evaluate problem

    Can you give me an example how can I use that? And what is the reason why those &quot;-&quot; -signs makes the errors? Thanks!
  12. jarla

    Evaluate problem

    I have problem again. Here is little explanation, I hope your understand. First page have drop-down box that customer use to choose the right size for picture order. It have values with this begin: <select name=&quot;size#asset_name#&quot;> blaa...blaa... Then little database check and we found...
  13. jarla

    Reloading problem

    Thanks for help! Actually only what I need is the number of pictures that are on the lightbox. For example &quot;2 images&quot;. I think it´s enough if I can make a JavaScript which receives that #lightbox.recordcount# -value when the page first load and then when user clicks the &quot;Add to...
  14. jarla

    Reloading problem

    Hi! Once again a difficult(?) problem. I hope that you professionals can help me. Our company have picture searching site with option to add pictures to &quot;lightbox&quot; for ordering. Site is made without frames so when user clicks the &quot;Add to lightbox&quot; -button below the picture...
  15. jarla

    No results from this query!

    Hi again! Now it works! I changed the &quot;nvarchar&quot; to &quot;varchar&quot; and after that the &quot;CONTAINS&quot; -search worked normally... But I really didn´t know that &quot;nvarchar&quot; don´t work as good with &quot;CONTAINS&quot; -search than &quot;varchar&quot;...
  16. jarla

    No results from this query!

    Aarrrgh! Still no results. I just tested some different queries. This works (but of course it´s DAMN slow): SELECT ID, asset_name, folder_name from picturedatabase WHERE categories like '%cat%' (that gives 15026 records) But this don´t work: SELECT ID, asset_name, folder_name from...
  17. jarla

    No results from this query!

    No. Like I wrote, even this kind of search don´t find any records: SELECT ID, asset_name, folder_name FROM picturedatabase WHERE Contains(categories, 'cat')
  18. jarla

    No results from this query!

    Hi! I´ve just added &quot;full text search&quot; to our SQL Server 2000 -system. But I don´t know what is wrong with it because it don´t find any records with &quot;Contains&quot; -value. Here is one example query: SELECT ID, asset_name, folder_name FROM picturedatabase WHERE...
  19. jarla

    Difficult(?) query loop

    Hi! I can´t make this query work. First little story about what this query should do: I have picture searching interface on my company´s website. Some keywords are in english, some are in our language which is finnish. So I made database &quot;translate&quot; which have most of typical search...
  20. jarla

    File from server to another server

    Hi (again) What is the best way to send file(s) from one server to another server? Example situation: Customer have pictures in his picturefolder in our server and customer have own web-interface to search pictures and send more to customer´s archive. I´m programming a way that that customer...

Part and Inventory Search

Back
Top