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

    Grouping Logic

    This seems like it should be simple, but I can't come up with a simple solution. I want to turn this Book Type |Book Deed Record 1 Deed Record 2 Deed Record 3 Deed Record 5 Mortgage Record 1 Into Book Type |Book Deed Record 1 - 3 Deed Record 5 Mortgage Record 1 Any ideas?
  2. VVVA

    Images & Foxpro...

    I'm totally new to foxpro...been playing with it over the weekend. I got an image control on my form, and I'm wondering how to zoom, pan, rotate, ect. Are these functions in the image control somewhere, & I'm just missing them...or is there a better image control out there I should be using?
  3. VVVA

    How Can I Kill an External HD?

    Another dev turned in an external HD as bad. He tried copying data to it, & when he hit 100GB it gave him errors and refused to write any more data to the HD. I suspect it is going out, and don't think it's a good idea to use it. If it goes out, it's going to cost us at LEAST $80, which is...
  4. VVVA

    Backup Solutions

    Our company works with lots of images. We have about 3-5TB of images on our production server at any one time. When we are finished with the images, we back them up to DVD's and delete them off the server. A while back, our HW dept was re-building the array, and we were supposed to be able to...
  5. VVVA

    Reading& Restoring the Master File Table?

    Is there some type of tool out there I can use to read the master file table? Also, is there any possible way to retrieve old versions of the MFT...does the system restore point store the file? Would it store the file for just the OS drive, or all drives?
  6. VVVA

    SQL Task Planner

    I'm working on a mini-scheduler, and I'm not sure how to do what I want to do with SQL. I think it'll be easiest to show the data I've got and what I want... Task ManHours Person Pri Clean up the room 16 Bob 2 Clean up the room 16 Lucy...
  7. VVVA

    Finding Missing Pages

    If I have these three tables, how can I quickly get a list of missing pages, pages that are in the testbook table, but not in the Pages table, and that are less than the maxpage for that book? Pages -------------------------- Book Page 000001 0001 000001 0003 000002 0001 000002 0005...
  8. VVVA

    Interesting SQL Propblem

    I've got a sql question. If I have a table that has two columns, book and page, what is the best way to get a count of all the missing pages for each book? So, if I have this table... Book Page 0001 0001 0001 0002 0001 0005 0001 0006 0002 0001 0002 0005 0002 0006 0002 0009...
  9. VVVA

    Insert Columns Into a Table

    How can I use sql to insert columns into a table, and control the order at which they go in the table? I want to insert columns at the beginning of a table, and by default, sql puts them at the end of the table...
  10. VVVA

    Can Compare Binary Data?

    I am attempting to figure out if images I have stored in a SQL table are .tif or .jpg. Looking at the data, it is easy to tell that all of the .jpg images begin with a certain pattern (0xFFD8FF). Is there any way I can cast the image as another data type, and compare it? I've tried this...
  11. VVVA

    Is there any way to set a variable off of dynamic sql?

    Is there any way I can do something like this without dropping out to a UDF? declare @CMD varchar(4000) declare @Field1 varchar (20) declare @Result varchar (40) set @Field1 = 'Name' set @CMD = 'select top 1 '+@Field1+' from MyTable' print @CMD set @Result = (exec (@CMD))
  12. VVVA

    Personal C*** In the Workplace

    Say you have a manager that has no clue what he is doing. He is totally worthless when it comes to any type of technical details. Worse yet, he consistantly lies about project status to customers, ("We are almost done with that project..." when we haven't even started), insists he is right...
  13. VVVA

    Best way to compare three Array's

    I'm totally new to javascript, in fact I started last week, and so I'm a total noob... I have three arrays that I want to compare, and find the records that are in all three. Each Array is linked back to drop down boxes in my browser. If I select "High School" from my school dropdown box...

Part and Inventory Search

Back
Top