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: *

  • Users: schu
  • Order by date
  1. schu

    how to use tar?

    l,m,h,c is the tape density Low,medium,high,compressed It is different for each kind of tape. c is used most often. b = BSD behavior (not sure what that means) n= no rewind
  2. schu

    Insert records from one table to another

    Sorry not command, It is a component, which allows quick copy from one table to another. Coming to think of it, it might not work with cross database. You should look at it anyway. Of course you can use use a query, to extract then a loop to insert. Slower but works. Query1.SQL.ADD('SELECT *...
  3. schu

    Insert records from one table to another

    You should look at the batch move command
  4. schu

    how to rotate a video stream?

    I rememebr something about AVI functions returning a bitmap. I guess you can use a function to rotate it. Another way I thing is use OpenGL, and put the bitmap as a texture, Then you rotate the object and the movie can be rotated whilst still playing. try this link. The tutorial is in C++, but...
  5. schu

    Basic Syntax - Populating a List view

    Try this http://community.borland.com/article/0,1410,19578,0.html
  6. schu

    how to verify RAID configuration info on sun solaris?

    The set up seems OK apart from the /oradata4 and /oradata5 which are not mirrored. You can see which partition swap is on using "swap -l" command. However, swap devices are normally not mirrored, as they are slower at writing and generally do not require the protection.
  7. schu

    how to verify RAID configuration info on sun solaris?

    just like ken said metastat will give you the information you want, it takes a bit of time to understand, so man metastat for information.
  8. schu

    how to verify RAID configuration info on sun solaris?

    There are two types of RAID implementation. Software and hardware. Do you have a storage array (extra box holding disks?) e.g. A1000, A3510 etc. These storage arrays tend to be hardware RAID. Internal disks tend to be software RAID. Also do you know if you have volume managers on your server...
  9. schu

    Starting questions

    1. It is just a preference. If you are used to Microsoft tools e.g. C++,C# etc you will find the Microsoft software easier to use. If you have used Borland C++, Delphi then Borland IDE will be easier to use. Remember the IDE is meant to save you development time not hinder it. There are those...
  10. schu

    aix5.2 tuning

    Add RAM add CPU Add array hdisks, RAID 5 ;-)
  11. schu

    HELP! CDROM Cached

    I have recently bought a new comp. Summary from 1400 XP,512MB, MX400 to 64 3200+,2G, 7900GT. My problem: I do some video encoding VCD->DivX using virtualDubMod. I would open the AVSEQ01.DAT and the save as avi. Then when finished I insert the next disk and select AVSEQ01.DAT for the second CD...
  12. schu

    exporting data from Oracle to MsSqlServer

    If for some reason you must use Delphi, I think there is a BatchMove component which can be used to move data from one table to another (again with append, overwrite options). I have only used it in simple Paradox tables so I do not know its performance or reliability with large databases.
  13. schu

    exporting data from Oracle to MsSqlServer

    MS SQLServer has a tool to do this kind of thing. It is allows import and export of databases, excel files, text files etc. I cannot rememeber what it is called (used it about 5 years ago) but it should be in the menus. It takes about 30 mins to learn and is quite fast. There are options to...
  14. schu

    High Scan Rate

    All I can suggest is Your user usage pattern might have changed, so they are running something which cause high memory usage. Any problems with RAM? Lost any physical memory. I would suggest you try to find out if the high scan rate is time related. It does sound like your system is I/O bound...
  15. schu

    Primary Interface Card and RAM details

    you can use "ifconfig -a" to view your NIC cards, it will show ip etc. you can use "prtdiag" normallay found in /usr/platform/sun4u/sbin which will show you all the hardware config + status. It will show you your RAM and how many sticks, how big etc.
  16. schu

    Run or restore a program from Delphi 7.0

    I assume you mean run one instance of your program here is a link http://sheepdogguides.com/dt4l.htm you may also search +"one instance" +delphi for more examples
  17. schu

    out TOP to a file..

    You can have a similar command to top using the /usr/ucb/ps command. here are examples to show top CPU usage and top Mem usage processes ######################################### echo "----- Top 10 Processes By Usage of Processor(s)" /usr/ucb/ps -aux | awk '{print $3 " " $2 " " $1 " " $11}' |...
  18. schu

    Code efficiency question

    former the test for check is not executed N times
  19. schu

    Cancel Form Opening

    you just close it after the check, it still pops up if the system is slow, but will immediately close.
  20. schu

    Show data with C and OpenGL

    You should really look at this site http://nehe.gamedev.net/ look at lesson 21 (buildfont, and glprint functions) I learnt a lot from this site

Part and Inventory Search

Back
Top