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 Wanet Telecoms Ltd 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: *

  1. jared5494

    windows 7 not showing 2 CPUs (pentium 4)

    I found the issue. i had ACPI 2.0 enabled on my motherboard, but somehow the ACPI APIC support hadn't been enabled. I turned that on and Windows 7 instantly recognized it and everything is running substantially better. thanks kjv1611 for your help! it is greatly appreciated.
  2. jared5494

    windows 7 not showing 2 CPUs (pentium 4)

    attached the CPUZ info. also, checked the bios and hyper-threading has been enabled.http://img130.imageshack.us/img130/4674/cpuzd.png
  3. jared5494

    windows 7 not showing 2 CPUs (pentium 4)

    When going to task manager in XP, it always showed 2 CPUs for a Pentium 4 (3.6 GHz Prescott). I tried doing the same in Windows 7 and its just showing one CPU. * I tried going to View > CPU History but the only option is greyed out (one graph per CPU). * When going to msconfig > boot >...
  4. jared5494

    editable regions possible?

    I am quite new to using ajax and was wandering if this is possible: have text regions on a website with a little edit icon above them. the user clicks the edit, enters a password and gets an edit box. the user edits the text region and hits save. now the website's text region is changed for...
  5. jared5494

    linking to a local file

    hello, to test the script, I have another box next to me that has the flv file at c:/ and when i load the webpage, it should play, but its not.
  6. jared5494

    remote swf linking to a local flv

    Hello, I first posted this in the HTML forums, but I was wandering if anyone has tried this: Here is ultimately what I am trying to accomplish: Web server holds the swf player component, but i want the flv file to reside on local machines for playback. here is the web server's html: <object...
  7. jared5494

    linking to a local file

    Hello, Here is ultimately what I am trying to accomplish: Web server holds the swf player component, but i want the flv file to reside on local machines for playback. here is the web server's html: <object type="application/x-shockwave-flash" width="400" height="350" wmode="transparent"...
  8. jared5494

    custom sorting in sql

    worked like a charm! Thank you VERY MUCH! i was looking into cases, but couldnt figure out how to apply it like that. again THANKS! -Jared Weinfurtner
  9. jared5494

    Amber light on Monitor after new mobo

    i had the same problem with an asus p4p800. when i turned it on, the fans were spinning, but nothing on the screen. it turned out to be DOA and asus shipped me a new one and it worked like a charm.
  10. jared5494

    custom sorting in sql

    Hello, Ok here is the problem: i have a column named col1 that contains either 'a', 'c', 'd', 'k', 'n'. i want to sort in that order, but when i do this sql command, it obviously sorts them alphabetically select othercolumn, col1 from tablx order by col1 what is the syntax to do a custom...
  11. jared5494

    Thread.sleep() problem

    stefanwagner, you were right on the money and thank you so much! -Jared
  12. jared5494

    Thread.sleep() problem

    Hello, I am trying to just make a simple applet to count slowly from 1-5, pausing in between. However, when i go to run the application, it just pauses to display the application and only shows the last number, not the counting: import java.awt.*; import javax.swing.*; public class...
  13. jared5494

    star schema - fact and dimensional tables question

    ok i forgot a few lines, here is the solution i think is right: i added: AND NORTHWIND..SUPPLIERS.SUPPLIERID = NORTHWIND..PRODUCTS.SUPPLIERID AND NORTHWIND..ORDERS.ORDERID = NORTHWIND.."ORDER DETAILS".ORDERID to the WHERE clause and it shortened it from 350,000 lines to 2155 lines LOL...
  14. jared5494

    star schema - fact and dimensional tables question

    ok last question! =) thanks again for all your help! ok, the fact table, heres the code i tried: SELECT NORTHWIND.."ORDER DETAILS".PRODUCTID, NORTHWIND..ORDERS.CUSTOMERID, NORTHWIND..ORDERS.EMPLOYEEID, TIMEID, NORTHWIND..SUPPLIERS.SUPPLIERID, NORTHWIND.."ORDER...
  15. jared5494

    star schema - fact and dimensional tables question

    thanks, i will insert the time dimension table (for other user's seach): CREATE TABLE TIME ( TIMEID int IDENTITY(1,1) PRIMARY KEY CLUSTERED, TIME_DATE SMALLDATETIME, TIME_YEAR SMALLINT, TIME_DAY VARCHAR(10), TIME_MONTH VARCHAR(10), TIME_QUARTER VARCHAR(2) ) DECLARE @CurrDate...
  16. jared5494

    star schema - fact and dimensional tables question

    thanks, i do have a question about the time dimension table. i know its so you can see monthly/weekly statistics, but how do you populate the time table?
  17. jared5494

    star schema - fact and dimensional tables question

    thanks for your replies. here's the star schema i was going to test: http://img256.imageshack.us/img256/5935/screen02sw2.gif here is the northwind database diagram: http://img256.imageshack.us/img256/9416/untitledpg6.png my question is that do i just populate the dimension tables with...
  18. jared5494

    star schema - fact and dimensional tables question

    i know using a star schema can be used to answer questions such as: who are the top 5% salespersons, what was the best month in sales, etc. i am having a hard time finding information on how to do this in coding. i know you have to set up a fact table and dimensional tables (i am using the...
  19. jared5494

    trying to access ms sql server in php

    ok i found out the answer, for some reason localhost didnt work (even though everything is run on my computer) and when i switched my computer name with localhost, it worked. odd, but thanks for all your help. defininetly helped for future troubleshooting!
  20. jared5494

    trying to access ms sql server in php

    ok, if you go to www.jarednet.org/test.php i got the mssql section to show up, but still am not getting anything but a blank screen when i tried to submit a sql query through php (look for the code above)

Part and Inventory Search

Back
Top