Debugging Procedures

Nov 23, 1998

I'm looking for leads on any T-SQL / Trigger / Procedure editing and debugging tools for MSSQL 6.5 .

Any and all information would be appreciated.

Thanks in advance
Paul Gaynor

View 1 Replies


ADVERTISEMENT

Debugging Stored Procedures

May 4, 2001

Hello, I have tried to use the debug feature in query analyzer to debug a stored procedure but it doesn't work. I have done the simple task of selecting the sp in the object browser, right clicking it and selecting debug. I supply the parameter and click execute. Next, I apply a breakpoint to a SELECT statement and then click go. The sp just goes without stopping at the breakpoint; it doesn't even show the yellow arrow on where it is supposed to go next. Am I missing something? Do I need a patch? The version I am running is 8.00.194. If anyone can give me direction, I would appreciate it.

TIA

View 1 Replies View Related

Debugging Stored Procedures

Jul 23, 2005

Hello,I am doing a lot of work with stored procedures at work now and am wonderingif there is a way that I can step through the code line by line and setbreakpoints on it like I do in VB/VBA to test variables/parameters.Regards,Jayne

View 4 Replies View Related

Debugging Stored Procedures

Aug 28, 2006

I have complete error handling and printing the error after every insert or update statements or after calling another procedure.

But somehow when executing the proc it is not printing the error.

The query analyzer shows a general message 'Query batch completed with errors'

All the logic seems to be working properly, but this message is bothering me. Why is this message displayed if everything is run correctly [or] is something wrong ?

Example:

[code]

/*************************************************************
** Error Handling
**************************************************************/

SELECT @rowcount = @@rowcount
,@error = @@error
,@short_msg = 'Error Creating MCTM. - AG_SP_FAC_MCTN_INSERT'
,@long_msg = 'Error in executing proc AG_SP_FAC_MCTN_INSERT'
,@resolution_msg = 'Stored procedure error. Contact Technical Support for fix'
,@log_cd = 'AG.CONV.ERR' + convert(char,@exec_seq_no)
,@log_level = 'O'
,@log_severity = 3

IF (@error <> 0)
BEGIN

EXEC amgrp_conv..AG_SP_LOG
@LOG_CD = @log_cd
,@LOG_DTM = @log_dtm
,@LOG_LEVEL = @log_level
,@LOG_SEVERITY = @log_severity
,@APP_NAME = @app_name
,@SHORT_MSG = @short_msg
,@LONG_MSG = @long_msg
,@RESOLUTION_MSG = @resolution_msg
,@MAIN_STORED_PROC_NAME = @main_stored_proc_name
,@STEP_STORED_PROC_NAME = @step_stored_proc_name
,@SYBASE_CD = @error

PRINT 'ERROR=' + convert(varchar(255),@error)

ROLLBACK TRANSACTION TRAN_PRAC_PAR
CLOSE prac_par_cursor
DEALLOCATE prac_par_cursor
RETURN @failure

END

[/code]



View 7 Replies View Related

Debugging SQL SERVER Stored Procedures

Jun 8, 2005

I don't see the option to debug a stored procedure. I right click on
the procedure and should'nt it appear in the properties window. Do I
need to install some extra component to get the debugger.

View 4 Replies View Related

Debugging Pure T-SQ Stored Procedures

Jun 21, 2005

I understand that there has been some dscussion on the subject of debugging T-SQL stored procedures.  Can you point me to this information?  I am not interested in how to debug CLR stored procedures as that is well documented.
Thanks

View 6 Replies View Related

Problem With Debugging Stored Procedures

Sep 12, 2007

Hello

It is impossible for me to debug any stored procedures. I use MSSQL Server 2005 and Visual Studio 2005. I can open procedure's body in VS, launch it, but when I choose "Step into stored procedure", I get the following error message:

"Unable to start program 'MSSQL:://localhost/my_db/dbo/=34353453453'. The system cannot find the file specified."

My OS is WinXP x64, and SQL Server is also x64, but I tried it on a 32-bit machine with the same result.
What am I missing? Thanks for any help.

View 3 Replies View Related

Debugging TSQL Stored Procedures

Jun 23, 2006

Running SQL Server Express is there a way to debug TSQL stored procedures? I also have Visual Studio .NET 2003, can I use it to debug the TSQL stored procedures?

Thanks in advance,
Mark

View 7 Replies View Related

Debugging Stored Procedures In Visual Studio 2008

May 22, 2008

I've followed the steps in http://www.sqlteam.com/article/debugging-stored-procedures-in-visual-studio-2005 & in the MSDN for configuring and setting up debugging SQL 2005 stored procedures in VS 2008 (seems to be the same as in VS 2005). Everything works fine until I Step Into the Stored Procedure. Everything says that a yellow arrow will appear on the left and I can start going line by line. I never get the yellow arrow.

If I set a breakpoint, it is automatically disabled. The pop-up warning says, "The breakpoint will not currently be hit. Unable to bind SQL breakpoint at this time. Object containing the breakpoint not loaded." I can't find anything about this message or problem on Microsoft's site or on the web. Any assistance is appreciated.

P.S.
I'm running VS 2008 Professional Edition Version 9.0.2.1022.8 RTM

View 7 Replies View Related

Problems With Debugging Remotely SQLCLR Stored Procedures?

Mar 28, 2006

Hello,

my username is selevalencia, I had before the database on my machine, but as now we have a server I backed up the database and restored on the server, it seems that it has the sames logins and security users,

Its strange because the user dbo is assigned the user selevalencia on the server, and I cant alter the user dbo.

The user dbo should be the login sa?? I am in big trouble with this, beacuase I cant debug my sql clr stored procedure.



T-Sql execution ended without debugging. You may have not have sufficient permissions to debug.



I am using a connection with windows authentication, so it means that its sending tha tokes as selevalencia to the server.



Please feel free to ask for more information about it. Thanks

View 3 Replies View Related

Debugging Stored Procedures With Visual Studio.net Has Stopped Working

Mar 17, 2004

Hi, I used to be able to debug stored procedures via Visual Studio.net 2003. However, this has stopped working. It does not produce an error just simply doesn't work anymore i.e. the breakpoints are by-passed.
I have the correct settings in the Debug configuration section. If any-one knows how to rectify this your help would be appreciated.
I have thought about re-installing the remote debugging functionality on the server. However, our Visual Studio.net discs are with a developer who is away at present.

Thanks in advance
Lee

View 2 Replies View Related

SQL Tools :: Debugging Stored Procedures Shows Wrong Line Pointers

Apr 26, 2015

I have an extremely annoying problem when debugging stored procedures in SQL Server 2014 with SSDT or SSMS. When calling a SP thru EXECUTE in Debug mode, 9 out of 10 SPs are traced with a wrong yellow arrow-pointer to the line currently reached.

The offset is between 6 to 15 lines downward. Tracing itself and update of the "Locals"-view works as expected. All SPs contain comments also before the Create Procedure statement. The SP shown when tracing show exactly the same content as the stored SQL in the SSDT project under work incl. Create procedure and all comments.

The picture here show the first line selected after the debugger has traced into the SP. The first line really executed with "Next" will be SET NOCOUNT ON.

If this does not turns out as my fault and some of you would support that, I would like to post this to SQL Connect.

View 4 Replies View Related

When Debugging, Do You Have To Shut Down And Restart BIDS Every Time You Rebuild The Custom Component That You're Debugging?

Jul 9, 2006

Hi,

I have found that when I'm debugging a custom component in BIDS that I've created in another instance of Visual Studio, every time I rebuild the component I have to shutdown and restart BIDS and then reattach to the BIDS process. Which is pretty time consuming... And if I find a small error in my custom component when debugging then I don't seem to be allowed to make any changes to the code unless I stop debugging and go through the process above.

Am I missing something here? Or do I really have to manually go through these steps every time I want to change code in the component I'm debugging?

Can I automate the process with MSBuild or NAnt? If so, is there an example of this anywhere?

Thanks in advance,

Lawrie.

View 1 Replies View Related

SQL Debugging.

Dec 28, 2004

Hi.

I need to step into a SP on my SQL server. However, I get "Security hasn't been setup correctly on server RADU. SQL debugging terminated."

I read the docs, and I did exactly this (as per the help files):

---------------------------------------------------------------------------------------------------
To configure DCOM on the server for SQL debugging

You may need to download and install DCOM first. If so, go to http://www.microsoft.com/com/resources/downloads.asp for the latest version.

You must have administrator privileges on the machine where you are configuring DCOM.

From the Start menu, choose Run.
In the Open box, type dcomcnfg.exe.
Click OK.
The Component Services dialog box appears.

In the left pane of the Component Services dialog box, expand the Component Services node and find Computers.
Expand the Computers node and find the computer for which you want to configure DCOM.
Right-click the computer and choose Properties from the shortcut menu.
In the Properties dialog box, select the Default COM Security tab.
Under Access Permissions, click Edit Default.
The Access Permission dialog box appears.

If the group or user who needs access does not appear in the list of permissions, click Add.
The Users, Computers, or Groups dialog box appears.

In the Enter the object names to select box, type the name of the group or user who needs access.
Click OK.
The user is now added to the list.

If SYSTEM does not appear in the list of permissions, click Add.
The Users, Computers, or Groups dialog box appears.

In the Enter the object names to select box, type:
SYSTEM
Click OK.
SYSTEM is now added to the list.

In the Access Permission, select Allow for each user you added.
Click OK to close the Properties dialog box.
If you changed any settings in this procedure, restart SQL Server.
---------------------------------------------------------------------------------------------------

However, from inside VSnet IDE. I get the same message ("Security hasn't been setup correctly blah-blah-blah").

I have tried with users 'ASPNet' and 'VSDevelopers'. Which user should I choose ? Is there something else I should do ?

Sure, this is not the end of the world, I can still do the debug from within Query Analyzer, but still, it would be nice not to have to do this.

Thank you.
Alex

View 1 Replies View Related

Debugging?

Aug 15, 2005

Hi,Is there a way to debug an SQL Server stored procedure? I call a number of sp's from my .net app and need a way to step through them.Thank you,

View 4 Replies View Related

SQL Debugging

Dec 8, 1998

Does anyone use SQL debugging? I write pocedures in SQL server useing Developper studio, but i do not find any means to debug stored procedures.
Though i can place a break point to source code of sp_procedure, code is runned a whole.
Is this means only for C++?
Can anyone help me?
I have very large procedures and someteimes it is hard to find an error.

Ludek

View 1 Replies View Related

Can U Help Me Debugging This

Aug 13, 2007

select

if(acr_application.appStatus = 'AOO' then acr_application.appDt,
if(acr_application.appStatus = 'A01' then acr_application.recvdDt,
if(acr_application.appStatus = 'A02' then
(select A.payDt from acr_payment A, acr_reference_no B
where A.refNo = B.acrReferenceNoId and B.refType = 'ACF' and B.appNo =
acr_application.appNo),
if(acr_application.appStatus = ('A03', 'A08'),
(select C.updatedBy from acr_insp_sched C
where C.appNo = acr_application.appNo and C.seqNo =
(select max (D.seqNo) from acr_insp_sched D where D.appNo = C.appNo)),
if (acr_application.appStatus = ('A04', 'A05', 'A06', 'A15'),
(select E.updatedBy from acr_inspection E
where E.appNo = acr_application.appNo and E.seqNo =
(select max (F.seqNo) from acr_inspection F where F.appNo = E.appNo)),
if(acr_application.appStatus = 'A07',
(select G.payDt from acr_payment G, acr_reference_no H
where G.refNo = H.refId and H.refType = 'REI' and H.appNo =
acr_application.appNo),
if(acr_application.appStatus = ('A10', 'A11'), acr_application.approvedDt,
if(acr_application.appStatus = 'A13', acr_application.updatedBy,
if(acr_application.appStatus = 'A14',
(select H.payDt from acr_payment H, acr_reference_no J
where H.refNo = J.refId and J.refType = 'CSB' and J.appNo = acr_application.appNo), null)))))))))

from acr_application

View 4 Replies View Related

Debugging

Aug 21, 2007

In SQLServer 2000 I could easily debug a stored procedure from QA. But I dont know how to debug a sp in SQLServer 2005. I could find nothing to deal with it in SQL Server Management Studio. Can anybody tell me how to do it?

View 6 Replies View Related

Can U Help Me Debugging This I Appreciate Ty

Dec 10, 2007

select
acr_application.appNo as 'applicationNo',
acr_application.facilityName as 'nameOf DrugTesting',
acr_application.adr as 'address',
acr_reference_no.refNo as 'referenceNo',
ref_charge.chargeDesc as 'charges/fee',
acr_reference_no.amount as 'amount',

ref_settings.earlyFileDiscnt as 'pdiscount',
((ref_settings.earlyFileDiscnt / 100) * acr_reference_no.amount) as 'discount',

case when acr_reference_no.earlyFileDiscntDt is not null then acr_reference_no.earlyFileDiscntDt
else
case when '2007-09-29' <= ref_facility.validToDt then date_sub(ref_facility.validToDt, interval (ref_settings.earlyFileDiscntValid + 1) day)
end
end as 'discountValidity',

ref_settings.lateFileDiscnt as 'psurcharge',
((ref_settings.lateFileDiscnt / 100) * acr_reference_no.amount) as 'surcharge',

case when acr_reference_no.lateFileSurchargeDt is not null then acr_reference_no.lateFileSurchargeDt
else
case when '2007-09-29' <= ref_facility.validToDt then ref_facility.validToDt, select a.validTodt from acr_application a where a.appNo = (select max(b.appNo) from acr_application b where b.appNo < acr_application.appNo)
end
end
end as 'surchargeValidity',

'0012 2222 20' as 'accountNumber',
concat('DOH-',acr_reference_no.refNo, '','-85619') as 'accountName',

concat(if(acr_application.ownerTitle is null or acr_application.ownerTitle='','', concat(acr_application.ownerTitle, '')),
acr_application.ownerFname, ' ',
if(acr_application.ownerMname is null or acr_application.ownerMname='','', concat(substr(acr_application.ownerMname,1,1),'.', ' ')),
acr_application.ownerLname, '', '',
if(acr_application.ownerSuffix is null or acr_application.ownerSuffix='','', concat(' ', acr_application.ownerSuffix))) as 'nameOfRepresentative'

case when acr_application.appType = 'INA' then acr_reference_no.amount
else
case when acr_application.appType = 'RNW' then
(if(acr_reference_no.earlyFileDiscnt is not null
and acr_reference_no.earlyFileDiscnt <='2007-09-29',
acr_reference_no.amount + (acr_reference_no.amount * (ref_settings.earlyFileDiscnt / 100))))
else
case when acr_reference_no.earlyFileDiscntDt is not null
and acr_reference.earlyFileDiscntDt > '2007-09-29'
and '2007-09-29' <= ref_facility.validToFt
then acr_reference_no.amount, acr_reference_no.amount + (acr_reference_no.amount * (ref_settings.earlyFileDiscnt / 100))
end
end
end as 'totalCashDeposit',

case when acr_application.appType = 'INA' then date_add(acr_applicationappDt, interval ref_settings.validityAfterAppDayy)
else
case when acr_application.appType = 'RNW' then acr_reference_no.earlyFileDiscntDt
else
case when acr_reference_no.earlyFileDiscntDt is not null and acr_reference_no.earlyFileDiscntDt > '2007-09-29' and '2007-09-29' <= ref_facility.validToDt then ref_facility.validToDt, date_add(ref_facility.validToDt, interval ref_settings.validityAfterAppDay)
end
end
end as 'bankValidity'



from acr_application
left join ref_facility on acr_application.appNo = ref_facility.appNo
left join ref_settings on ref_settings.service = acr_application.service and
ref_settings.ownType = acr_application.ownType and
ref_settings.facilityType = acr_application.facilityType and
ref_settings.institutChar = acr_application.institutChar
left join (acr_reference_no left join ref_charge on acr_reference_no.chargeId = ref_charge.chargeId and acr_reference_no.paid <> 'Y')
on acr_application.appNo = acr_reference_no.appNo

View 4 Replies View Related

SQL Debugging

Jul 20, 2005

My colleagues and I have not been able to successfully set up SQL debugging on a SQL 2000 instance running on Windows 2000.Is there a checklist posted somewhere? We have verified that the SQL Server is not running with System Account Credentials. It runs as a Domain Administrator. We have also verified that everyone has permission to run sp_sdidebug. Does it matter that the Win2K machine is a Domain Controller? Any help would be appreciated.

View 1 Replies View Related

Debugging...

Feb 14, 2008

Hi -

I am new to SSIS but not new to ETL. Is there a way in debugger to debug but not actually update the target table ? In other tools I€™ve used, there was an option setting to not allow update/inserts into the actual table, but would provide a visual dataset so you could see & test with. I haven€™t been able to find this feature in SSIS & was wondering if there is a way to do this.

Thanks -

View 3 Replies View Related

Debugging T-SQL

Jan 11, 2008

Is there a way to step through sql when designing a query the way you can step through VB code in the IDE?

View 3 Replies View Related

Debugging Or A Parody On It?

Oct 1, 2007

Hi, I am new here.
I tried to debug stored procedures in the Visual Studio and you know… it was a real shock. Like going in time 10 or 20 years back.
The stored procedures I deal with contain a lot of @tab and #tab, but it appears that I can not evaluate the values of these objects! The only type of object I can evaluate is a variable. But SQL is designed for the table data, right? So the most important type of data is not accessible!
How can I understand, what records have been affected by Update or inserted by Insert? Using prints or debug selects? Is it an era of FORTRAN or ALGOL???
To make it worse, to enter a debugger, I need to provide values of all parameters. It might be simple for the outermost procedure, but for inner stored procs, and where some parameters are some short-living identity values of some records, created in a transaction, it is very difficult to prepare all conditions to make a correct run.
So my question is, may be I had overlooked something? Is it a real debugger or just a joke from Microsoft? Sorry, but I am really angry after wasting a lot of time last week on it.

View 2 Replies View Related

Debugging Tools

May 30, 2002

Does anyone know of any good debugging tools for transact sql? I know there is one by compuware called dbpartner but was looking for other options.

Thanks,
Eddie

View 1 Replies View Related

How To Debugging DTS Package

Nov 5, 2001

I have a script that works in works in Query Analyzer, but when I try to put it in a DTS package, it fails. I have the database set properly in the data source. Can someone give me direction to figure out what is going on?


Brian

View 1 Replies View Related

Debugging Tools

May 2, 2001

Hello,

I'm kind of new to SQL Server 2000, I've heard about debugging tools in Query Analyser
where can I find this tools?

Thanks

View 2 Replies View Related

Debugging Triggers

Jan 20, 2006

I was wondering if it is possible to pop up a dialog box from a SQL trigger.

This would be a great way to debug triggers as you could report variable values in the dialog box.

If not, does anybody have any suggestions as to the best way of reporting out variable values whilst a trigger is running?

View 2 Replies View Related

Debugging My Sprock

Aug 1, 2006

From this msg im guessing that SQLE.DLL nee to be installed on my SQLServer box, is that correct? Where would i find this dll?

Server: Msg 508, Level 16, State 1, Procedure sp_sdidebug, Line 1
[Microsoft][ODBC SQL Server Driver][SQL Server]Unable to connect to debugger on APOLLO-ClintonSQL (Error = 0x800401f3). Ensure that client-side components, such as SQLLE.DLL, are installed and registered on PUR-CO-Clinton2. Debugging disabled for connection 59.

View 1 Replies View Related

Debugging In SQL 2005

May 29, 2008

Ok, I am aware of the process to debug a stored proc for SQL 2005. I have never done anything in the Visual Studios 2005 so have had no reason to have it but now that I am pretty much forced into using SQL 2005, I have been deprived of the easy system of debugging stored procs from query analyzer. My question is...with the Visual Studios 2005 that was included with the SQL 2005 install, why does it not allow me to debug? I am aware of the whole Pro, Standard, etc of VS, but why not offer any way to debug? Am I missing something here? What options do I have to debug a stored proc other than running it over and over and over and over again to pinpoint an issue without getting VS2005 Pro or something?

View 4 Replies View Related

Debugging Tool For SP

Feb 3, 2004

After writing a Stored Procedure(which is giving correct reasult) how can I go for optimizing it?Is there any tool to debug a stored procedure?

View 1 Replies View Related

Debugging CLR Function

Jun 5, 2008

I have been trying to debug a simple CLR function in VS2008 without any luck. I have searched Google and gone through several walk throughs without any luck. The function builds, deploys, and works from SQL fine but I cannot debug in VS. I created a new SQL login for a new user with SysAdmin privileges, and even set the permission level to "unsafe". Still, no debugging. The results in the output window of VS is "Canceled by user". I feel like this may be a permissions issue but I'm not sure. Can someone point me in the right direction to correct this? I use to debug CLR stored procs at another place of employment using VS all the time. Unfortunately, I wasn't involved with configuring it.

View 1 Replies View Related

Question About Debugging

Jul 23, 2005

Greetings: I have a question about debugging or stepping through DTSpackage Active X scripts. When I hit a bug Microsoft DevelopmentEnvironment pops up the script and highlights where the error occurred.I can use the Immediate pane to find out the values in the variables,but I can't set breakpoints or step through or out of or back into thescript or even change it. Is this possible? I am having troublefinding references to this. I appreciate any help.Thanks!--Rowan

View 1 Replies View Related

SQL Debugging Tool

Dec 9, 2005

I am an old guy that comes from the large IBM 370 generation, at that timewas very easy for me to debug programs using cedf tool., even if theprogram was object code with this tool you were able to intercept CICScommands and sql commands.I have a delphy application., only object code., that has access to a sqlserver.., what tool may I use to intercept the sql commands released fromthis application ?? I know this is not a particular question regarding mssql server, but for sure you guys knows a lot more than me about thisenvironment.RegardsJCortes.

View 1 Replies View Related







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