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

    Select Higher of Two Values...

    Seems to me that there was a funtion somewhere that returned the greater of two parameters, like: biggerOf(1, 5) = 5... or biggerOf(0, -1) = 0 I want to set a zero baseline, but I cannot recall the quick way (if ever there was one). dang, i'm gettin' old Note: The above comments are...
  2. Mr3Putt

    SQL 2K on dual proc, multi-drive (no raid) server

    I am not a database administrator. I do not study the vagaries of of SQL2K setup, care, or maintenance. We are upgrading a SQL7.x installation to 2K. Our current install of 7.x includes the SQL applications on the C:\ drive, but the actual database files, mdf, ldf, etc on the E:\ drive. The...
  3. Mr3Putt

    Very Bad ACRONYMS

    I dunno about you, but I am driven mad by poorly done or "forced" acronyms. The one currently in my bonnet is "NORAD", or, the "North American Aerospace Defense Command". Now, I'm sorry, but there is no $%@^& way that the above phrase can be represented by N-O-R-A-D. NORthamerican Aerospace...
  4. Mr3Putt

    SQL2K Installation: Multiple Drives Question

    I am not a database administrator. I do not study the vaguaries of of SQL2K setup, care, or maintenance. We are upgrading a SQL7.x installation to 2K. Our current install of 7.x includes the SQL applications on the C:\ drive, but the actual database files, mdf, ldf, etc on the E:\ drive. The...
  5. Mr3Putt

    Creating Shortcuts With Proper File Names

    I, for the life of me, cannot find any good reason for the following: When I select some files, right-click and drag them to another directory, release and select "Create shortcuts here"... My shortcut names appear to be the exact same as the original file name (as long as I'm not creating them...
  6. Mr3Putt

    FileSystemObject, folders, and files... confounding.

    Note: I have already attempted to peruse the FAQs, and I Googled around for a bit... no luck. Here's my boggle: While I'm interrogating the content of a folder object, I want to check for the existence of files in another folder. Why I want to do this is mostly unimportant, I'm just curious to...
  7. Mr3Putt

    StoredProc: Multiple selected params

    I should, perhaps, post this in the ASP forum, but I'll give it a go here first... My current problem: I've got a form on an Intranet page with a &quot;SELECT&quot; object, like: <select name=&quot;sel1&quot; id=&quot;sel1&quot; size=&quot;8&quot; multiple> <option...
  8. Mr3Putt

    Robots.txt and ROBOTS META-TAG...

    I've got a new ASP-based site, which contains only about 30 actual ASP pages. About 5 pages in each of 6 sections... the meat of the site is based on a whole bunch of include files. Actually, they are NOT includes, they're EXECUTES... My situation: I don't want robots indexing the INCLUDE files...
  9. Mr3Putt

    Linking to CSS for media=&quot;print&quot; ?

    does this work? I'm having a bit of difficulty determining if it works or not... <link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;/css/print.css&quot; media=&quot;print&quot;>
  10. Mr3Putt

    Stored Procedure: Sort by Variable Column

    Quick-n-Dirty: Here's what I WISH would work... ------------------------------- Alter Procedure usp_getStuff ( @sName varchar(50), @iSortCol int = 1 ) As SELECT sName, sStuff, iOtherStuff FROM tTable WHERE (@sName IS NULL) OR (sName = @sName) ORDER BY @iSortCol...

Part and Inventory Search

Back
Top