MSSQL Server'da 70000 kayıttan oluşan yabancı sarki sözü arşivimden bitişik (satır satır olmayan) şarkı sözlerini aşağıdaki kodla silmek istedim. server timeout mesajı verdi. Kod da bir hata mı yaptım bilemiyorum yardımcı olabilecek arkadaşa teşekkürler....
<!--#INCLUDE FILE="baglan.asp"-->
<%
set xs=NC.Execute("Select * from yabanci where (id >1 and id < 70000) ")
Do While Not xs.EOF
id=xs("id")
soz=xs ("sarki_sozu")
soz1=soz
soz=Replace (soz,chr(13),"<br/>")
if soz=soz1 and id<>Empty then
set xs = NC.Execute ("DELETE yabanci where id='"&id&"'")
end if
xs.Movenext
Loop
nc.close
set nc=nothing
%>
<!--#INCLUDE FILE="baglan.asp"-->
<%
set xs=NC.Execute("Select * from yabanci where (id >1 and id < 70000) ")
Do While Not xs.EOF
id=xs("id")
soz=xs ("sarki_sozu")
soz1=soz
soz=Replace (soz,chr(13),"<br/>")
if soz=soz1 and id<>Empty then
set xs = NC.Execute ("DELETE yabanci where id='"&id&"'")
end if
xs.Movenext
Loop
nc.close
set nc=nothing
%>