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 Westi 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. spDavCom

    Flash MX LoadVars saving?

    I can load my varibles into my project from a .txt file. QUESTION: I would like to make a change to a variable then save it back to the .txt file. Can this be done? //I've tried: oLv.var1 = "newValue" ; oLv.send("vars.txt") ; //But this doesn't seem to work...
  2. spDavCom

    xml code not working

    QUESTION: What is not right with this code? I just can't get it to append. var sNewRecord ; sNewRecord = Doc_xml.createElement("tblCheckBook2000"); sNewRecord.attributes.DATE = "03/09/2003"; sNewRecord.attributes.CHECK_ID = "5000&quot...
  3. spDavCom

    upgrading from access 97 to sql 2000

    Ugrade the access 97 to access xp 2002 first! Then upgrade to sql 2000. You need to use the sql 2000 manager to look at the table relations.
  4. spDavCom

    RETURN statement performance?

    QUESTION: I've heard that using the RETURN statement can boost performance because SQL Server will not create a recordset. Where does the return statement go in my stored proc? NOTE: I'm using asp.net to call my stored procs. Any input or syntax is much appreciated in...
  5. spDavCom

    Should I and why ? set nocount on

    Thank you sqlBill, it seems to shave off a few seconds.
  6. spDavCom

    Should I and why ? set nocount on

    QUESTION: Should I include the SET NOCOUNT ON statement in my stored procedures? What's the correct syntax? NOTE: I've head that this increase network performance. And, all of my stored procs are called from asp.net pages. Thanks. Any input or syntax is much appreciated.
  7. spDavCom

    How do I ? STORED PROCEDURE

    Thank you! very much! Your syntax worked great!
  8. spDavCom

    How do I ? STORED PROCEDURE

    CHALLENGE: I have a column in a sql db that is filled with credit and debit values or + and - money values. QUESTION: How do I return the sum total of the positives and the sum total of the negatives from one stored procedure NOTE: I can do this if I write 2 stored procedures...
  9. spDavCom

    I CAN NOT GET OVER THIS ERROR "Server Application Unavailable"

    I've done what all the "tids" say, I'VE: made an aspuser account and given it all the rights and properties to all the appropriate directories that all the tids said it should have. edited the machine.config file and put the account it in the process model section . NOTE...
  10. spDavCom

    ORDER BY not working correctly with datetime column

    Thank you for your input. This is what I finally used: ORDER BY DATEPART(YY, DATE) DESC
  11. spDavCom

    ORDER BY not working correctly with datetime column

    PROBLEM: It "ORDERS" my column by the month part of the date . QUESTION: How do I get it to "ORDER" on the year part of the date. NOTES: This stored proc is being called from an asp.net app.
  12. spDavCom

    Asp.net error when calling stored procedure

    ERROR: Implicit conversion from data type nvarchar to money is not allowed. Use the CONVERT function to run this query. NOTE: I'm passing a param to the stored proc from an asp.net text box or string variable. STORED PROC: CREATE PROCEDURE [sp_FindByAmount] @pAmount money...
  13. spDavCom

    Call sql stored procedure from a stored procedure

    Please can anyone show me the correct syntax on how to call a stored proc(requiring params) from a stored proc or let me know if it is even possible. I'm using MSDE and sql server 2000 sP2. ANY, examples would be most appreciated.

Part and Inventory Search

Back
Top