HELP - ActiveX Stuck In Loop, Cannot Kill!

Jul 1, 2004

Someone please help--

I've been working on an ActiveX script in a DTS package. I executed the script and it's stuck in a while..wend loop. If I kill it I will lose all the code I wrote (pretty much a lot) since last saving the entire package.

Is it possible either:

a) Kill the activex step without killing the entire DTS designer session.
b) Locate the ActiveX code which must be in a temp table somewhere.

Please help I don't want to recode the entire object.

Thanks!

View 1 Replies


ADVERTISEMENT

Help Batch Script Task Stuck In A Loop

Aug 29, 2006



I have a .bat file that calls a script file to log in to a server and upload a file to my pub account. When I run the .bat file it just executes the command over and over and never executes the script file. Does anyone know why? Am I missing something in my script or .bat file commands below?

my .bat file contains this--->ftp -s:script.txt

my script file contains this:

open myserver.com
username
password
put W:UPLOADdoc.txt
bye
exit

Thanks,

Mike

View 6 Replies View Related

You Cannot Use KILL To Kill Your Own Process. Why?

Mar 24, 1999

I'm trying to kill a bunch of processes in SQL 6.5 and I can't. I'm running the only machine with SQL tools installed on it (the server) and it won't let me kill them. I try the GUI screens and the Kill statement in ISQL_w. Is there any way around this?

I've stopped the SQL Server and rebooted the NT Server. Is there anyway I can get rid of these processes. They are locking some tables and keeping me from inserting data within my code. Very frustrating.

Thanks

View 2 Replies View Related

SQL Server 2008 :: Difference Between FOR LOOP And FOREACH LOOP?

May 28, 2010

difference between FOR LOOP and FOREACH LOOP with example(if possible) in SSIS.

View 4 Replies View Related

Loop Though Table Using RowID, Not Cursor (was Loop)

Feb 22, 2006

I have a table with RowID(identity). I need to loop though the table using RowID(not using a cursor). Please help me.
Thanks

View 6 Replies View Related

Kill Won't Kill

Apr 25, 2001

I have a replication log reader SPID hanging.
When the logreader tries to run again, it fails
due to Error 14151 Replication log reader - task "blah" failed. Another log reader is replicating the database.

I do a sp_who2 on the database and identify the spid that is running
the logreader, from here I usually kill the spid and the log starts up again no problem. Now the spid WON"T DIE!!!
Any help would be appreciated.
Thanks
Susan

View 2 Replies View Related

Kill

Feb 4, 2008

Hi,

We are planing to write a script that execute frequently to kill processes that are running for more than 1 minute. Does anyone knows the logic to filter out system or other required SQL processes from this auto kill script


regards

Priv

View 8 Replies View Related

Not Able To Kill The Process

Mar 27, 2001

Hi all,

I have SQL Server 7.0 with SP2 on it and I am not able to kill one of the SPID's who is running a SELECT Statement.
When I saw in the current activity in EM I see the STATUS as ROLLBACK, COMMAND as SELECT, APPLICATION as MS SQLEM-DATATOOLS, WAITTIME as 5375 and WAITTYPE as CXPACKET..

I also tried to reboot the machine of that particular SPID , but it still shows up in the Enterprise Manager.

Can anyone tell me how to kill this process and how to get around this Problem


Any Ideas,
Thanks in Advance
Venu

View 4 Replies View Related

Kill Process

Sep 4, 2001

Hi, there, do you know how to kill a process without restart SQL Server?

I tried Kill from SQL Query analyzer and Enterprise Manager, but it not work as before. Please advise, Thank you very much

Tony

View 1 Replies View Related

T-SQL Kill Command

Jul 24, 2000

BOL say to kill a process use (i.e. Kill 10).

I am trying to get the kill command to accept a variable

declare @aProcess smallint
set @aProcess = 30
kill @aProcess

On the above code I get the following syntax error.

Server: Msg 170, Level 15, State 1, Line 3
Line 3: Incorrect syntax near '@aProcess'.

Any suggestions, ideas, etc. would be Appreciated!!

Thanks.

View 2 Replies View Related

KILL Processes, Help To Do This!!!

Sep 20, 2000

Hi,

How to kill process???
I turn off workstation but the process still available in the sysprocesses table and in the Curent activity window.
I can't to kill this (and I can't to restart serever, because the users) .

If anyone know something about this problem.
Thanks

View 2 Replies View Related

Kill Old Transactions

Nov 9, 1999

Does anyone have a script for killing transactions older than 24 hrs? I have been having problems with users bootting out and leaving open transactions, I'd like to clean up all the orphans early every morning.

I am trying a WHILE on DBCC OPENTRAN.

We are using TCP/IP sockets, apparently they never notify the db server that the user has dropped, sockets stay open by default.

TIA

View 4 Replies View Related

KILL Spid

Feb 19, 1999

I can not stop a process using 'KILL spid'.What else should I try?
process has begun a transaction and does not commit.

View 2 Replies View Related

Kill All Processes In A Particular DB

Sep 26, 2006

/*
The Following Stored Procedure helps to
Kill All Processes in a Particular DataBase
With Out Current Process
*/

Create Proc Sp_KillAllProcessInDB

@DbName VarChar(100)

as
if db_id(@DbName) = Null
begin
Print 'DataBase dose not Exist'
end
else

Begin
Declare @spId Varchar(30)

DECLARE TmpCursor CURSOR FOR
Select 'Kill ' + convert(Varchar, spid) as spId
from master..SysProcesses
where db_Name(dbID) = @DbName
and spId <> @@SpId
and spId > 50
and dbID <> 0
OPEN TmpCursor

FETCH NEXT FROM TmpCursor
INTO @spId

WHILE @@FETCH_STATUS = 0

BEGIN

Exec (@spId)

FETCH NEXT FROM TmpCursor
INTO @spId

END



CLOSE TmpCursor
DEALLOCATE TmpCursor

end
/* The Above Query Helps TO Change a Database in Single USer Mode Quickly*/

View 5 Replies View Related

Kill Processes

May 8, 2002

I have been needing to disconnect users often, before backing up a database or setting it to restricted users.
Each time, I have to go to Current Activity & kill one process at a time. Is there a way, by which I can kill all processes on a database or force out all coonections to it?

Thanks.

View 4 Replies View Related

Can&#39;t Kill A Process

Sep 4, 2002

I have a process that a user somehow got locked on Master and can't kill the process. Tried EM and kill and still will not work. Any other ideas?

View 1 Replies View Related

How To Kill Process

Apr 5, 2001

SQL Server 2000.

Hi!
After I killed maintenance process (57) in the current activity window and run ‘kill 57 with statusonly’ I got message: ‘SPID 57: Estimated rollback completion: 100%. Estimated time remaining: 0 sec.’
When I reopened current activity window I still see that SPID 57 is runable.
Then I run select*from
sysprocesses where SPID = 57
It also reports that process status is runable.
What is the problem?
How can I remove (and should I) this record from masterdb.
Thank you,
Natalia

View 2 Replies View Related

Kill Process

Oct 4, 2006

Hi Peepz,

Im just a newbie using SQL Server anyway i noticed in my present company that most of the process/Stored Procedure that are being executed or connection that was being made by the application is not being terminated or disconnected. they use very large IO and CPU resources making the server slow or sometimes hang.(well that was my diagnostics). i try to kill them one by one but it seems endless process is redundant. to cut my problem short im thinking of having an application that would automatically kill all this unwanted process but ofcourse i should specify the parameter which process to kill. is this possible? i saw the KILL statement in the online books but it seems uncomplete with what i wanted to accomplish.

Thanks all

View 2 Replies View Related

Kill Process

Oct 4, 2006

Hi Peepz,

Im just a newbie using SQL Server anyway i noticed in my present company that most of the process/Stored Procedure that are being executed or connection that was being made by the application is not being terminated or disconnected. they use very large IO and CPU resources making the server slow or sometimes hang.(well that was my diagnostics). i try to kill them one by one but it seems endless process is redundant. to cut my problem short im thinking of having an application that would automatically kill all this unwanted process but ofcourse i should specify the parameter which process to kill. is this possible? i saw the KILL statement in the online books but it seems uncomplete with what i wanted to accomplish.

Thanks all

View 4 Replies View Related

Kill Processes

May 4, 2004

Can you kill processes in SQL Server 2K without stopping SQL Server and restarting it? I am using sp_who2 to get a list of active users and I see some accounts that are logged off but still showing up and I am trying to find a way to Kill these accounts and the processes they are doing.

View 3 Replies View Related

KILL Spid

May 8, 2008

can we just kill spid and drop it without doing any rollback ...?


Thanks,
ServerTeam

View 9 Replies View Related

Does KILL Rollback?

Jun 26, 2007

Hi All,

If I KILL a SPID, are any modifications automatically rolled back?

View 5 Replies View Related

Kill Connection

Feb 15, 2007

Hello,I do maintenance on the Back endand have like 10 - 20 connections open...specialized scrips i run and theydont need to be stored proc'sis there a way to kill the connection when the script is finished...from myclient side.....not just disconnect...cause server still has the pool of the connection...iwant to kill the pool'd connection alsothanksDave P

View 1 Replies View Related

I May Just Have To Kill Myself....Oracle

Sep 18, 2006

I have a stored procedure in Oracle.

I build the sql beautifully to call it with Openquery

"select * from OPENQUERY(MYLink,'DECLARE P_DATE VARCHAR2(20); BEGIN P_DATE := ''15-Sep-2006 17:26:09''; EXEC poPT (P_DATE); COMMIT; End;')

"Server: Msg 7357, Level 16, State 2, Line 1"

"Could not process object 'DECLARE P_DATE VARCHAR2(20); BEGIN P_DATE := '15-Sep-2006 17:26:09'; EXEC poPT(P_DATE); COMMIT; End;'. The OLE DB provider 'MSDAORA' indicates that the object has no columns."

I cannot seem to find away to make this work.

I wanted to return just the record count to make it happy but that did not work either.

The linked server is fine, the grants are fine.

I even tried this as a function in oracle to no avail.

I feel like I am going insane trying to make something that SHOULD BE SIMPLE work.

It's times like this that you really appreciate SQL Server....

Thanks for ANY help with this.



View 3 Replies View Related

Foreach Loop Doesn't Loop

Mar 3, 2006

I have a foreach loop that is supposed to loop through a recordset, however it doesn't loop. It just repeats the same row, row after row.

I would like to look into the recordset variable but I can't because it is a COM object and the ADODB namespace is not available in the script task.

Any solution to this? anyone experienced anything similar

View 1 Replies View Related

Fishing For A Clue. To Loop Or Not To Loop

Jul 8, 2006

I have a table called Tbltimes in an access database that consists of the following fields:

empnum, empname, Tin, Tout, Thrs

what I would like to do is populate a grid view the a select statement that does the following.

display each empname and empnum in a gridview returning only unique values. this part is easy enough. in addition to these values i would also like to count up all the Thrs for each empname and display that sum in the gridview as well. Below is a little better picture of what I€™m trying to accomplish.

Tbltimes

|empnum | empname | Tin | Tout | Thrs |

| 1 | john | 2:00PM | 3:00PM |1hr |

| 1 | john | 2:00PM | 3:00PM | 1hr |

| 2 | joe | 1:00PM | 6:00PM | 5hr |

GridView1

| 1 | John | 2hrs |

| 2 | Joe | 5hrs |

im using VWD 2005 for this project and im at a loss as to how to accomplish these results. if someone could just point me in the right direction i could find some material and do the reading.

View 18 Replies View Related

Kill Unnecessary Connections

Mar 22, 2004

how to determine which connections are unwanted...
i just ran the sp_who sp and heres the results i got...now how can i know unwanted connections form this list..


10background sa0 NULLLAZY WRITER
20sleeping sa0 NULLLOG WRITER
30background sa0 masterSIGNAL HANDLER
40background sa0 NULLLOCK MONITOR
50background sa0 masterTASK MANAGER
60background sa0 masterTASK MANAGER
70sleeping sa0 NULLCHECKPOINT SLEEP
80background sa0 masterTASK MANAGER
90background sa0 masterTASK MANAGER
100background sa0 masterTASK MANAGER
110background sa0 masterTASK MANAGER
120background sa0 masterTASK MANAGER
130background sa0 masterTASK MANAGER
510sleeping NT AUTHORITYSYSTEM 0 ReportServerAWAITING COMMAND
520runnable CENTCOMDinakar 0 BBMiniSELECT
550sleeping CENTCOMASPNET 0 BBMiniAWAITING COMMAND
560sleeping CENTCOMASPNET 0 BBMiniAWAITING COMMAND


thanks

View 3 Replies View Related

Unable To Kill Process

Jul 9, 2002

Hi,
Could anyone tell me why I am not able to kill processes even with kill spid. I had scheduled some db backups through DB Maintenance. All of them are running for days together when I tried to kill them spid. It still does not get killed. Can anyone tell me why

View 4 Replies View Related

Not Able To Kill Sleeping Process

Apr 20, 2001

I have SQL Server 7.0 and I am not able to kill one of the SPID's who is running a SELECT Statement and showing as sleeping.
When I saw in the current activity in EM I see the STATUS as sleeping
COMMAND as SELECT, APPLICATION as Microsoft Transaction server, WAITTIME as 7877 and WAITTYPE as EXCHANGE and CPU 10074
Thanks in advance.

View 1 Replies View Related

How Do I KILL All User Connections In One Go?

Oct 16, 2001

How do I "KILL" all user connections in one go?

I need to perform a daily restore and have to manually kill multiple
user connections, its very time consuming. Is there an easier way?

Id be grateful if you can help me!
Many thanks,

Lauryn

View 3 Replies View Related

How To Kill All Connections Automatically

Jul 21, 2000

I have an sql 7.0 database with an Access 97 front end. We need to run a
process every night to update the database. However, not all users disconnect
from the front end and we get lock conflicts. It is not acceptable to have a
person stay till the evening to manually kill all the spid's and i can't find
any way to force all users off the database as you can in DB2. Also,
we can't change the front end. Any idea how to force all users off of
an sql server database (kill all spid's?) in an automated way. Thanks

View 4 Replies View Related

Unable To Kill Process

Dec 23, 2000

Hi,

I'm having a problem killing a process in SQL 7.0. I have a spid that has been around for a couple of weeks! I try to remove that process by right clicking and selecting 'Kill Process' but nothing happens. The process originated when I deleted large amounts of data from a logging table. NOw I can not remove the process. I'm concerned that this might indicate the database is getting corrupted.
Any suggestions?

Thanks in Advance

View 3 Replies View Related

Problem With Kill Statement

Oct 25, 1998

Forgive me for what may be a dumb question but i`m having trouble using the kill statement in a stored procedure. The problem is that i always get a syntax error when using the kill statement with a local variable as the parameter.
For example some part of the code is:
declare @myspid smallint
...
exec kill @myspid
...

Please help!

View 4 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved