Recent IT Questions

1 - 20 of 87
<<PREVIOUS 1|2|3|4|5 NEXT>>

Code Impact Analysis Tool

Hi, Need a tool to do the impact analysis of .net/java/com code files and should produce the matched code/classes/objects/methods/references etc. for a particular database hit (stored-procedure or select/insert/update query)

View Answer   |  Jun 19 2009  12:46 AM GMT
Impact analysis tools, .NET, Java
asked by Kvrao

  5 pts.

Create a Stored Procedure using CL and RPGLE programs

I have an RPGLE program called from a CL program for database files overrides. I want to call the same programs from a stored prodecure on SQL Server from within a Web application. I am brand new to SQL Server but am pretty good on the AS400.

View Answer   |  Jun 12 2009  3:17 PM GMT
RPGLE, CL, Stored Procedures
asked by NCharette

  5 pts.

Error inserting into table with identity column

I have 2 stored procedures. Both insert records into table variables, and each of those table variable has an identity column. One procedure executes and the other gives an error telling me that I am explicitly trying to insert into the identity column (which I'm not). Here is the code from the...

View Answer   |  May 21 2009  6:33 PM GMT
SQL stored procedures, SQL 2000, Stored Procedures
asked by Bleeb

  40 pts.

Stored Procedure

Hi Guys. Any help would be greatly appreciated. I have three tables Table 1 ID PurchaseOrderNo Value Table 2 ID PurchaseOrderNo WorkID Table 3 WorkID Cost Tables 2 and 3 have a many to one relationship with table 1. I want to display all the PurchaseOrderNo from table 1 and then the sum of...

View Answer   |  Apr 24 2009  3:15 PM GMT
SQL stored procedures, Stored Procedures
asked by Andy1999972

  15 pts.

Output errors from SQL Server stored procedure

I have a stored procedure using SQL Express that update a table using data from another table. All is well except that from time to time the source table might have data that causes an error. I would like to add some code to the stored procedure that will catch the error, output the details to a...

asked by Spionred

  35 pts.

optimization of stored procedures in sqlserver

is there any stored procedure optimization techniques actually my problem is my stored procedure is getting information from 15 tables by joins and have some conditions in where clause to get 15,000 records it is taking 40 sec how can i improve the my stored procedure thanks, naresh

asked by Naresh1226

  5 pts.

How to use Store Procedure for multiple column database update?

I created a store procedure to update a table based on values from another table using inner join. 15 records need to be updated but when the store procedure is executed no rows are updated bu the return value is 0.

View Answer   |  Mar 24 2009  3:28 AM GMT
Stored Procedures, INNER JOIN
asked by KjitSingh

  5 pts.

How do I refresh the Stored Procedure used for Crystal Reports datasource

I have an existing Crystal Report that uses a Stored Procedure as a datasource. The requirements have changed and the Procedure has been updated to have only one parameter instead of two. How do I refresh the Stored Procedure without removing it. I have tried to Verify the Database but just get an...

Answer Question   |  Feb 27 2009  4:12 AM GMT
Crystal Reports, SQL Server, Stored Procedures
asked by Flyght

  55 pts.

Explain Stored Procedures in AS/400

Hi, Can any one please explain me 1.What is stored procedures in AS/400. 2.What is the use of Stored Procedure 3.Please give me small example how to code stored procedures in AS/400 4.What is the object type of Stored procedures 5. How can we code stored Procedures and how can we call it. and main...

asked by Mohan K

  365 pts.

How can I pass tablename as a parameter in MySQL stored procedure?

my SQL stored procedure is like this.... ALTER PROCEDURE [dbo].[Sp_InsertDataMaster] @_ImageID int, @_Stat bit, @_tablename nvarchar(200) AS begin declare @strTemp nvarchar(max) set @strTemp = 'Insert into ' + @_tablename + '(ImageID,Status) values ('+ convert(nvarchar(5),@_ImageID) +','+...

View Answer   |  Feb 14 2009  8:38 AM GMT
MySQL Stored Procedures, MySQL, Database programming
asked by Minal

  45 pts.

How to use embedded SQL in a RPG program used as a stored procedure

When I use embedded SQL in a RPG program and call it from another program it works fine. But, when I try to use the program as a stored procedure it gives me a SQL error. I have worked with stored procedures and understand them, but have not been successful using embedded SQL with them. Any ideas...

asked by Warykat

  20 pts.

Stored Procedures, One Database, Different Software Releases

Hi Everyone. Currently at my work we use SQL in our VB.NET code. I have previously always used stored procedures for all of their benefits. My company has said that our customers might use different versions of our software against its one database. For example: While a customer is migrating from...

View Answer   |  Feb 4 2009  9:20 AM GMT
Stored Procedures, SQL, Release management
asked by Danol21

  5 pts.

Passing an array into a Stored Procedure

is there a possibility of passing an array into a Stored procedure i am using java and sqlserver 2000

View Answer   |  Jan 30 2009  7:40 AM GMT
Arrays, SQL Server stored procedures, Java
asked by Khperi

  5 pts.

Permissions for writing stored procedures in MySQL

Hi Friends, I have been using navicat to connect MySql5.0 in my local evironment.I connect my java project to MySql database as backend. Now my problem is, I generated an sql script to backup my local database. I run the script in server. Tables were created. But in the case of stored procedure,...

Answer Question   |  Jan 27 2009  12:31 AM GMT
MySQL, Navicat, Java development
asked by Ktrramu

  5 pts.

Can embedded SQL in a SQLRPGLE program be used as a stored procedure?

I am successfully using (external) stored procedures with many RPGLE programs. (Some of these are SQLRPGLE programs because they return a result set.) All of this works fine. But if I try to replace some of the RPG I/O in a RPGLE program with embedded SQL, creating a SQLRPGLE program, and run it...

View Answer   |  Jan 14 2009  10:09 PM GMT
iSeries RPG programming, Stored Procedures, Embedded SQL
asked by Warykat

  20 pts.

stored procedure component

what is the difference between the way of using storedprocedure component in delphi5 and delphi7?

Answer Question   |  Jan 12 2009  1:36 PM GMT
Delphi, Stored Procedures, Delphi 5.0
asked by VPL

  95 pts.

Is there a way to retrieve datatypes from stored procedures?

I have used the following simple query to retrieve datatypes from sql 2000 tables. select TABLE_NAME, COLUMN_NAME, DATA_TYPE, CHARACTER_MAXIMUM_LENGTH from <tablename>.information_schema.columns where table_name = '<tablename>' and column_name = '<columnname>' Is there a...

View Answer   |  Jan 6 2009  8:34 PM GMT
Stored Procedures, SQL tables, SQL 2000
asked by TlogP

  15 pts.

ALTER INDEX statement

'ALTER INDEX ' || C_Indices.INDEX_NAME ||' REBUILD '; 'ALTER INDEX ' || C_Indices.INDEX_NAME || ' REBUILD ONLINE COMPUTE STATISTICS'; In my stored procedure , i am reconstructing or you can say re-building the tables and table name is the input parameter to the procedure. In middle of the code ,...

View Answer   |  Dec 16 2008  12:54 AM GMT
Oracle development, Oracle SQL, Oracle stored procedures
asked by Shaksing

  5 pts.

Inserting rows and multiple rows in SQL Server 2005 Express

Anyone there who can help me solve my problem? I can’t continue my program because of this problem which I know someone can solve or can suggest the best possible solution. I have a project in my study doing simple accounting program. To facilitate the discussion, I will just show you the three...

Answer Question   |  Dec 14 2008  2:16 PM GMT
VB.NET, Visual Basic .NET, Stored Procedures
asked by Ariell

  5 pts.

IF ELSE in SQL Server stored procedure

i am using this code which is giving error. if (@report_type = 'CM') Begin Select distinct Region,sum(ClientCount) as ClientTotal Into #NewTemp From ( End else if (@report_type = 'AM' ) Begin ( Select distinct Region,Area,sum(ClientCount) as ClientTotal Into...

asked by Rrj1

  5 pts.


1 - 20 of 87
<<PREVIOUS 1|2|3|4|5 NEXT>>