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 strongm 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. zooraw

    ORDER BY clause slowing performance

    I tried a clustered index....didn't seem to help.... DECLARE @RecordID bigint DECLARE @Hi varchar(2) DECLARE @Bye varchar(2) DROP TABLE Central.DBO.TempRecordCompInfo CREATE TABLE Central.DBO.TempRecordCompInfo ( [RECORD_ID] [bigint] NOT NULL , [Hi] [varchar] (2) COLLATE...
  2. zooraw

    ORDER BY clause slowing performance

    I have a table that I read. The table is indexed by the columns that I want to sort by (and in the same directions). I need to pick the Top 1 row from the table given certain criteria. If I do it without the ORDER BY clause, my code runs in less than a minute. If I include the ORDER BY, it...
  3. zooraw

    Running a DTS from Access VBA

    Don't know why I didn't see that until you said that. I think I included every other reference but that one.... Thanks!
  4. zooraw

    Running a DTS from Access VBA

    What references do you have to include in order to get this to work? Thanks....
  5. zooraw

    Radio buttons - change value with js

    Nevermind....figured it out. thread216-614818
  6. zooraw

    Radio buttons - change value with js

    I have <td><span style=&quot;font-size:10pt;fontweight:bold;&quot;>Sold</span></td> <td><input id=&quot;Sold&quot; type=&quot;radio&quot; name=&quot;Sold&quot; Checked Value=&quot;1&quot;>Yes <input id=&quot;Sold&quot; type=&quot;radio&quot; name=&quot;Sold&quot; Value=&quot;0&quot;>No...
  7. zooraw

    Need help changing float datatype to varchar datatype

    Create an intermediary field. UPDATE MyTable SET MyNewField = CAST(myFloat as varchar(x)) ???
  8. zooraw

    Required parameter not being passed

    Ok, apparently it didn't like my formatting. MAIN_SP --SUB_SP_1 ----SUB_SP_A --SUB_SP_2 --SUB_SP_3 --SUB_SP_4 {List of SELECT statements for return to web interface}
  9. zooraw

    Required parameter not being passed

    I've basically coded one huge mess of stored procedures, but that is beside the point. Here is how it is set up. MAIN_SP SUB_SP_1 SUB_SP_A SUB_SP_2 SUB_SP_3 SUB_SP_4 {List of SELECT statements for return to web interface} A stored procedure that is indented is called by the one a...
  10. zooraw

    &lt;/form&gt; tag making space

    Ok, I figured something out.
  11. zooraw

    &lt;/form&gt; tag making space

    Whenever I use a </form> tag, it seems to put in white space on the page. If I take it out, the white space disappears. I'd move the tag further down the page, but I have a separate <form> starting almost immediately after I close this one. Is there any way to keep this white space from...
  12. zooraw

    Enterprise Manager

    Well, thanks for the help. Guess I'll just have to go through my SPs one at a time and hope that I documented when I changed things well :)
  13. zooraw

    Enterprise Manager

    Even Access stores modified dates. Well, just leave it to Microsoft to come up short.
  14. zooraw

    Enterprise Manager

    In EM, is there a way to show the ModifiedDate of an object instead of the CreateDate? Or is there an easy way to get that information for all the tables/objects with some sort of query?
  15. zooraw

    SP to kick off a DTS??

    Is there a system stored procedure that you can pass the name of a DTS package to as a parameter that will execute that DTS package? If so, what SP is it? Thanks!
  16. zooraw

    SP to kick off a DTS?

    Is there a system stored procedure that you can pass the name of a DTS package to as a parameter that will execute that DTS package? If so, what SP is it? Thanks!

Part and Inventory Search

Back
Top