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 bkrike 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: manking
  • Content: Threads
  • Order by date
  1. manking

    What is wrong with this??

    Using mysql 5 what is wrong with this statement? DROP TABLE IF EXISTS messages_ulti; CREATE TABLE messages_ulti( PRIMARY KEY (ID), ID INT(11) AUTO_INCREMENT, fromID VARCHAR(50) DEFAULT '', toID VARCHAR(50) DEFAULT '', Subject VARCHAR(50) DEFAULT "Welcomemessage from...
  2. manking

    load inline file

    I am trying to load a file. I get the file to load but the category_id and supplier id load blank entries. Can someone tell me what I am doing wrong in the statement below. LOAD DATA INFILE 'c:/inventory.csv' INTO TABLE pos.items fields terminated by ',' IGNORE 1 LINES...
  3. manking

    IIS Sever

    I have a domain, that supports user settup. One of the feature is the user signes up for an account and the script creates a unique domain. IE.. www.domain.com setup new domain equals New_domain.domain.com. My DNS server will correctly read new domains as it support wildcard in a domain...
  4. manking

    Querry Help Please

    Can anyone help me convert this access statement to a mysql statement that works select top 50 a.Unique_ID, a.Date_Creation, a.createdBy_UserName, a.replies, a.views, a.lastPost_UserName, a.subject, a.Date_LastPost, a.locked, a.announcement, a.lastPost_UserID, a.createdBy_UserID, a.movedFrom...
  5. manking

    Ask Asded for help in rewriting a code snippet

    I ask for help in rewriting a code snippet yesterday for MYSQL from Access and Discovered I pasted the wrong snippet here is the right one Could some help in rewriting this for mysql?? select a.Unique_ID, a.Date_Creation, a.createdBy_UserName, a.replies, a.views, a.lastPost_UserName...
  6. manking

    Can someone help me write this in MYSQL from Access.(Lang is cold fus

    <cfquery name="GetForums" datasource="#application.MainDB#"> select a.name as category_name, a.Role_Moderate, b.unique_ID, b.title, b.description, b.Show_Description, b.Last_Post_Date, b.Last_Post_UserName,b.Last_Post_ID, b.category_ID, b.topics, b.posts, b.locked, <cfif...
  7. manking

    Purchasing Older Version

    I am looking to purchase an older version of CF. Anything % and up. Putting together a server for a non profit so cost is an issue. Thanks Mannyking@yahoo.com
  8. manking

    Hyjacked?

    It seems that some one has gotten in to my system and is using my 2000 server to scan ip addresses. I have run AVG 7 daily and not had any viruses. Seems the program is looking for port 3306 on other ip and it goes through whole banks of addreses. How can I find it? How can I stop It?
  9. manking

    Password Change

    A question of concern. I run cold fusion 4.5 sp 2 on a windows 2000 server. I use Mysql for a couple of databases. When I set up the Mysql I put in a user name and password. Then as I created two databases when it assigned those databases the password and username as root and "" as the...
  10. manking

    Hackers

    Over a year ago I had hackers break intoa windows 2000 machine. They left two directories on the hard drive that had garbage in them. File name with spaces and other characters. I can't open these to delete. I have to go in and change names of files give new rights ect. Is there a program...
  11. manking

    Windows 2000 Web Server Pop Ups

    I have a windows 2000 server that has never surfed the web, it is co-located in a local phone company. I administrer it remotely. Today I was cleaning the system files up and a pop up add in an IE window appeared. I have disabled the system messenger that a year ago was sending me lots of...
  12. manking

    Data Base Security

    I have a database that has is something.mdb it is called for in a program. When I try to open it with Access2000 it say the there is a problem with the header. When the program opens the database it copies it to a temp file or something. Is there a way to view this database?
  13. manking

    Administrator

    I run 4.5.1 SP2 all of a sudden I can't add CFX_ tags I can change the properties on the old ones (not the name) I also can't change the password or user name in a Datasource. It just started acting up. I reloaded SP 2 no luck. Maybe I accidently lock it out in some way checked a box...
  14. manking

    MYSQL returns garbage in Cold Fusion

    I am using MYSQL with cold fusion 4.5. I put in the following query. select * where messageid > 5 order by messageid One of the columns is messages, it is a text (longtext) colunm. The message column returned is garbled garbage. In my MYSQL admin program I can see the text yet it...
  15. manking

    Text and Long text returns garble variales

    I am using MYSQL with cold fusion 4.5. I put in the following query. select * where messageid > 5 order by messageid One of the columns is messages, it is a text (longtext) colunm. The message column returned is garbled garbage. In my MYSQL admin program I can see the text yet it...
  16. manking

    Admin.dll httpobc.dll

    I had the nimda virus. Cleaned the system reloaded win2000 files yet in the c:/ directory admin.dll and httpodbc.dll still there. I have attemped to remove these files but system sayes files are locked may be in use. I have looked none of the &quot;prgrams&quot; that use these dll's are...
  17. manking

    Select Count

    Any Ideas whats wrong with this? <CFQUERY name=&quot;gLis&quot; datasource=&quot;#DSName#&quot;> SELECT DISTINCT Types.ID, Types.Type, (Select Count(*) From Listings Where TypeID = types.ID AND Listings.Approved = 1) AS TotalListings FROM Types INNER JOIN Listings ON Types.ID =...
  18. manking

    INNER JOIN HELP

    m converting from access to mysql this will not work can someone tell me why? SELECT DISTINCTROW ads.ad_id, ads.name, ads.path, ads.filename, ads.href, ads.active, ads.password, category.category_name, sum(performance.loads) as totalloads, sum(performance.clickthru) as totalclicks FROM...

Part and Inventory Search

Back
Top