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 Chris Miller 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. Braderd

    My sqlserver.exe cpu usage %100 !

    What can i use instead of "do while" code or suggestion? Thank you.
  2. Braderd

    My sqlserver.exe cpu usage %100 !

    After testing, I realized that problem is below codes. I use these codes in 2 different part of the page. When I remove one of them everything returns to normal. I think that while and loop code has a problem to fix. What can i do? Thank you. i = 1 %> <font face="Arial" size="1"><% Do while i <...
  3. Braderd

    My sqlserver.exe cpu usage %100 !

    Thank you for your reply. I ve 6000 records in the all_pages table. What do you mean by index on the hit column or mydate ?
  4. Braderd

    My sqlserver.exe cpu usage %100 !

    Hi, I have a dedicated server. I'm using SQL Server 2005 Express Edition. sqlserver.exe cpu usage reach %100 when my below page loads. <% Response.CodePage = 1254 Response.CharSet = "windows-1254"%> <% Response.Buffer = True %> <html> <head> <meta http-equiv="Content-Type"...
  5. Braderd

    Login expire problem

    i have a dedicated server, i m using sql server 2005 express edition, i can set these settings. Where can i set? thank you.
  6. Braderd

    Login expire problem

    Hi, When i dont use sql server login about 1-2 weeks, then i m receiving this error: There was an error connecting to the database: Number: -2147467259 Source: Microsoft OLE DB Provider for ODBC Drivers Description: [Microsoft][ODBC SQL Server Driver][SQL Server]Login failed for SQL Server...
  7. Braderd

    Important problem

    i removed "on error resume next" code, it is working fine. thank you all.
  8. Braderd

    Important problem

    </font><font face="arial, helvetica" size="2">,</font> <% end if %> <%rs2.movenext exit while wend %> i wrote but it is writing; Microsoft VBScript compilation error '800a040f' Invalid 'exit' statement /default2.asp, line 475 exit while -----^
  9. Braderd

    Important problem

    please can you give me example? <% While (rs2.EOF=false) rs2_sayac =rs2_sayac+1%> <font face="arial, helvetica" color="#cc0000" size="2"> <a href="http://www.downloadprof.com/kategori.asp?lr=<%=rs2("id")%>"><%=rs2("name")%></a> <% if rs2_sayac<rs2.recordcount then%> </font><font face="arial...
  10. Braderd

    Important problem

    i added exit while code bottom of he page <%Exit While%> but i m receiving this error: Microsoft VBScript compilation error '800a040f' Invalid 'exit' statement /Default.asp, line 566 Exit While -----^
  11. Braderd

    Important problem

    Yes , I create that site with frontpage. This is my entry page. When the visitor load this page cpu usage is 100. I just ask do you see any endless loop in these codes ?
  12. Braderd

    Important problem

    Hi, I have a dedicated server but i have a important problem. My server cpu usage w3wp.exe always %100. My default.asp code: <%@ LANGUAGE=VBScript CODEPAGE=1254 %> <% on error resume next%> <% Response.Buffer = True %> <!-- #include file="editmeSQL.asp" --> <html> <head> <meta...
  13. Braderd

    &lt;%@ LANGUAGE=VBScript CODEPAGE=1254 %&gt;

    ok thank you very much for your reply.
  14. Braderd

    &lt;%@ LANGUAGE=VBScript CODEPAGE=1254 %&gt;

    Is there alternative of this language code? <%@ LANGUAGE=VBScript CODEPAGE=1254 %> alternative code can work, thank you.
  15. Braderd

    &lt;%@ LANGUAGE=VBScript CODEPAGE=1254 %&gt;

    Hi, I can not use the code <%@ LANGUAGE=VBScript CODEPAGE=1254 %> I'm receiving this error: Active Server Pages error 'ASP 0245' Mixed usage of Code Page values /programdeneme2.asp, line 1 The @CODEPAGE value specified differs from that of the including file's CODEPAGE or the file's...
  16. Braderd

    SQL Server Connection Code

    thank you for your code, it is working but now i m receiving this error: Microsoft OLE DB Provider for SQL Server error '80040e09' The SELECT permission was denied on the object 'emails', database 'subs', schema 'dbo'. /maillist/maillist.asp, line 43 line 43: rs.open sql,conn thank you.
  17. Braderd

    SQL Server Connection Code

    Microsoft OLE DB Provider for ODBC Drivers error '80004005' [Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified /maillist/maillist.asp, line 42 Line 37-42; subs=request.form("subs") dsn="DBQ=" & "driver={SQL...
  18. Braderd

    SQL Server Connection Code

    hi, thank you for your reply. line 39: strdsn.Open "driver={SQL Server};server=BORA\SQLEXPRESS;database=bora;Uid=bora1;Pwd=11111
  19. Braderd

    SQL Server Connection Code

    Hi, I have a maillist script. I was use this script in access database system. Some part of the code: Uemail=lcase(request.form("email")) subs=request.form("subs") dsn="DBQ=" & Server.Mappath("../../database/subs.mdb") & ";Driver={Microsoft Access Driver (*.mdb)};" set...

Part and Inventory Search

Back
Top