active questions tagged stored-procedures - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T02:37:20Z http://stackoverflow.com/feeds/tag/stored-procedures http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1589778/does-informix-have-scheduled-triggers 0 Does Informix have scheduled triggers? zombiegx 2009-10-19T16:39:36Z 2009-11-27T00:48:23Z <p>I need an Informix database to update some records on December 31 at 11:59; can Informix do this on a trigger, or does it have a scheduler of some sorts?</p> <p>I'm an Informix noob btw.</p> <p>I'm using informix 11.1 for hp-ux</p> http://stackoverflow.com/questions/1804879/oracle-stored-procedure-with-out-parameter-using-nhibernate 0 Oracle Stored Procedure with out parameter using Nhibernate publicgk 2009-11-26T17:25:16Z 2009-11-26T23:36:39Z <p>How can I access the value of an out parameter of an oracle stored procedure in the .net code - Oracle stored procedure being called via Nhibernate?</p> <p>Sample working code would help.</p> http://stackoverflow.com/questions/1802502/mysql-calling-a-stored-proc-from-another-stored-proc 0 MySQL calling a stored proc from another stored proc. Tempname 2009-11-26T09:15:35Z 2009-11-26T21:53:59Z <p>I am working on a stored proc (parent) that calls another stored proc (child). The child proc returns a record set with 1 row every time. </p> <p>What I need to do is pull the data from the child proc and use it in the parent proc. Using methodology from MSSQL I would assume I could just populate a temp table, but I am not quite sure how to do this.</p> <p>Any help with this is greatly appreciated.</p> <p>Here is the current version of my proc.</p> <pre><code>DELIMITER// CREATE PROCEDURE CreateTransaction(IN p_TransType tinyint, in p_UserID INT) BEGIN DROP TEMPORARY TABLE IF EXISTS fileData_tmp; CREATE TEMPORARY TABLE fileData_tmp (t_FilePrefix varchar(5), t_FileSuffix int, t_FileDate varchar(4)); CALL GenerateFileNumber(p_TransType); END// DELIMITER; </code></pre> http://stackoverflow.com/questions/1799064/filling-custom-c-objects-from-data-received-stored-procedure 1 filling custom c# objects from data received stored procedure Praveen Prasad 2009-11-25T18:37:58Z 2009-11-26T17:26:16Z <pre><code>public class User { public string FirstName { get; set; } public string LastName { get; set; } } public class Address { public string City { get; set; } public string Country { get; set; } } /* * There are 2 c# objects i have shown * There is a stored procedure in my application which * returns data for both objects simultaneously * eg * select FirstName, LasteName from Users where something="xyz" * select City,Country from Locations where something="xyz" * * both queries are run by single procedure * Now how can i fill both objects with from that stored procedure in asp.net using c# */ </code></pre> http://stackoverflow.com/questions/1796242/t-sql-stored-procedure-returns-null-in-code-but-works-in-console 0 T-SQL stored procedure returns null in code, but works in console dandan78 2009-11-25T11:10:30Z 2009-11-26T11:52:38Z <p>I have a stored procedure</p> <pre><code>CREATE procedure [dbo].[get_unique_identifier] AS DECLARE @ret_val INT UPDATE seq SET @ret_val = id = id + 1 RETURN @ret_val </code></pre> <p>that queries a table (seq) that has a single int column and single row, increments the value and then then returns it. Don't ask why I'm doing this, but in short, the idea is to simulate a PostgreSQL sequence and no, an identity column would not do the job. Anyway, this works fine in SQL Management Studio, where sequential executions of </p> <pre><code>DECLARE @returned INT EXEC @returned = get_unique_identifier SELECT @returned </code></pre> <p>produce the expected output. Unfortunately, I can't seem to get the returned value in the application I'm working on</p> <pre><code>OdbcCommand command = new OdbcCommand("get_unique_identifier"); command.CommandType = CommandType.StoredProcedure; OdbcParameter return_param = new OdbcParameter("@RETURN_VALUE", OdbcType.BigInt); return_param.Direction = ParameterDirection.ReturnValue; command.Parameters.Add(return_param); Util.SQLExecuteParameterizedNonQuery(command); Console.WriteLine(command.Parameters["@RETURN_VALUE"].Value.ToString()); </code></pre> <p>The output is an empty string, but the value itself is <code>DBNull.Value</code>. The <code>OdbcType.BigInt</code> is left over from some testing I was doing. It was initially <code>Int</code>.</p> <p><b>Edit:</b> This is clearly a bug with ODBC. A workaround is posted below. Don't use ODBC if you don't have do.</p> http://stackoverflow.com/questions/1802068/i-need-help-for-writing-a-stored-procedures-in-sql-server-2005 0 I need help for writing a Stored Procedures in SQL Server 2005 BabakArj 2009-11-26T07:25:47Z 2009-11-26T08:00:10Z <p>I’m a newbie in Stored Procedures in SQL Server 2005. Let’s say we have a table with these columns: <code>Id (GUID)</code>, <code>UserId (string)</code>, <code>DayOfYear (int)</code>, <code>Score (int)</code>.</p> <p>I need a SP with one input (<code>inputDayOfYear</code>) which copy last day (inputDayOfYear=10 => last day DayOfYear=9) data with new <code>Id</code> but old <code>UserId</code> and <code>Score</code>, and current <code>DayOfYear</code> (th input parameter) to new rows.</p> <ul> <li>One important thing is to ignore those records that have data of <code>DayOfYear</code> same as <code>inputDayOfYear</code>.</li> <li>Performance is also very important here; there are may be over 1000 rows for each <code>DayOfYear</code>.</li> <li>Return value is not necessary but number of new rows would be fine.</li> </ul> <p><hr></p> <p>I’ll be appreciated if you introduce me to some good resources to learn SP, too.</p> http://stackoverflow.com/questions/971095/getting-a-multi-dimensional-result-out-of-a-stored-procedure-with-linq-to-sql 1 Getting a multi-dimensional result out of a stored procedure with LINQ to SQL Andy Morris 2009-06-09T16:18:42Z 2009-11-26T07:20:38Z <p>I am using LINQ to SQL to call a stored procedure with a <strong>single</strong> result set (I have found a lot of information about handling multiple result sets, but that is not what I am doing). The result set is actually all columns from 3 tables joined together, and I have LINQ to SQL entities for those 3 tables. The schema is something like this:</p> <ul> <li>Customer 1 <ul> <li>Order 1 <ul> <li>Product 1</li> <li>Product 2</li> <li>Product 3</li> </ul></li> <li>Order 2 <ul> <li>Product 4</li> </ul></li> </ul></li> <li>Customer 2 <ul> <li>Order 3 <ul> <li>Product 5</li> </ul></li> <li>Order 4 <ul> <li>Product 6</li> <li>Product 7</li> </ul></li> </ul></li> </ul> <p>Basically, 1 Customer to many Orders, 1 Order to many Products. So the result set of the stored proc is actually one row per Product, but each row includes all of the Order and Customer columns. In the above example, the stored proc would return 7 rows.</p> <p>So the question is: how can I get 2 Customer objects out of LINQ to SQL, each having their Orders collection filled, and each Order object having its Products collection filled all from the results of the stored proc?</p> <p>I know that if you do something like (dc is the LINQ to SQL DataContext)...</p> <pre><code>var options = new DataLoadOptions(); options.LoadWith&lt;Customer&gt;(c =&gt; c.Orders); dc.LoadOptions = options; var customers = from c in dc.Customers select c; </code></pre> <p>...and then watch the SQL that gets generated, it will actually run one SQL statement that joins Customers to Orders, selecting all columns from both, and then return to you the distinct Customer objects with their Orders collections filled. I am wanting this same kind of translation to objects, but from the results of my stored proc.</p> <p>I have tried setting the return type of my stored proc to Customer, but with the example above, I get a collection of 7 Customer objects (5 duplicates) which do not have their Orders collection filled. If I then iterate over the Orders collection of one of the Customer objects, I see that they are lazy loaded with another round trip to the database. I then tried setting the return type to Product, and I do get the 7 products, but their Order property is lazy loaded via another round trip if I try to access it.</p> <p>I have also tried treating the result as an IMultipleResults, calling GetResult&lt;Customer&gt;() and GetResult&lt;Order&gt;() and GetResult&lt;Product&gt;() and manually piecing them together. In this case, though, only the first call to GetResult&lt;&gt;() will return something (any of the three entity types will work, but only for the first GetResult&lt;&gt;() call). The second and third GetResult&lt;&gt;() calls return null.</p> <p>Thanks for any help anyone can provide. I keep thinking I am either missing something easy, or LINQ to SQL doesn't offer any public API to do this (even though it appears to do this on its own in the LoadsWith example above).</p> http://stackoverflow.com/questions/1794871/dispalying-error-returned-by-stored-procedure-in-aspx-form 0 dispalying error returned by stored procedure in .aspx form anay 2009-11-25T05:34:29Z 2009-11-26T04:44:24Z <p>hey </p> <p>i have a stored procedure which i use to insert values in a table...if i implement error handling in it using @@ERROR and if i it returns error in a variable @myError can i display this error in my .aspx form??i m using sql server 2005</p> <p>thanx.... </p> http://stackoverflow.com/questions/1800476/is-it-possible-to-have-a-stateless-timed-function 0 Is it possible to have a stateless timed function. optician 2009-11-25T22:48:01Z 2009-11-25T23:31:39Z <p>I'm trying to set a reminder in a system to fire at a certain time.</p> <p>This is a web based app, so it's not like it will be in memory all the time.</p> <p>Ideally I'd like to avoid using a service or job on the server(mainly out of curiosity, to see if there is a more efficient way to do it)</p> <p>For example, imagine how many Ebay bids are constantly ending all the times, and emails being sent out seemingly perfectly in time.</p> <p>Do people recon there is just a big loop going over and over, moving items into a queue etc... Or is there something lower level helping out (stored procedures, triggers etc)</p> <p>Thanks everyone.</p> http://stackoverflow.com/questions/1725218/changing-stored-procedure 0 Changing stored procedure pbrp 2009-11-12T20:39:32Z 2009-11-25T20:37:24Z <p>I have a proc that print checks if there is any new checks to be print. If there is nothing to issue new checks it wont print any. Now i want to modify this proc like even if i don't have any new checks to be print, it should pick up at least one check to be print.( even if it is already printed). Can you tell me how to do that. Here is the stored proc.</p> <pre><code>CREATE PROCEDURE [proc_1250_SELCashiersChecksForPrint] AS SELECT t_DATA_CashiersChecksIssued.ControlNbr, t_DATA_CashiersChecksIssued.Audit_DateAdded, t_DATA_CashiersChecksIssued.BatchNbr, t_DATA_CashiersChecksIssued.SerialNbr, t_DATA_CashiersChecksIssued.CheckRTN, t_DATA_CashiersChecksIssued.CheckAccountNbr, t_DATA_CashiersChecksIssued.Amount, t_DATA_CashiersChecksIssued.DateIssued, t_DATA_CashiersChecksIssued.Payee, t_DATA_CashiersChecksIssued.Address, t_DATA_CashiersChecksIssued.City, t_DATA_CashiersChecksIssued.State, t_DATA_CashiersChecksIssued.Zip, t_DATA_Reclamation.ClaimId, t_DATA_Reclamation.NoticeDate, t_DATA_Reclamation.FirstName, t_DATA_Reclamation.MiddleName, t_DATA_Reclamation.LastName, t_DATA_Reclamation.ClaimTotal, t_PCD_Claimant.Name AS Agency, t_DATA_CashiersChecksIssued.IDENTITYCOL FROM t_DATA_CashiersChecksIssued INNER JOIN t_DATA_Reclamation ON t_DATA_CashiersChecksIssued.ControlNbr = t_DATA_Reclamation.ControlNbr INNER JOIN t_PCD_Claimant ON t_DATA_Reclamation.ClaimantCode = t_PCD_Claimant.ClaimantCode WHERE (t_DATA_CashiersChecksIssued.SerialNbr IS NULL) AND (t_DATA_CashiersChecksIssued.DateIssued IS NULL) ORDER BY t_DATA_CashiersChecksIssued.Audit_DateAdded ASC, t_DATA_CashiersChecksIssued.ControlNbr ASC </code></pre> <p>Let me know if you need more information.</p> http://stackoverflow.com/questions/530320/how-to-execute-spsenddbmail-while-limiting-permissions 0 How to execute sp_send_dbmail while limiting permissions Gern Blandston 2009-02-09T22:23:59Z 2009-11-25T19:29:59Z <p>Is there a way to provide access to users in my database to execute <strong><code>msdb.dbo.sp_send_dbmail</code></strong> without needing to add them to the MSDB database and the DatabaseMailUserRole?</p> <p>I've tried this:</p> <pre><code>ALTER PROCEDURE [dbo].[_TestSendMail] ( @To NVARCHAR(1000), @Subject NVARCHAR(100), @Body NVARCHAR(MAX) ) WITH EXECUTE AS OWNER AS BEGIN EXEC msdb.dbo.sp_send_dbmail @profile_name = N'myProfile', @recipients = @To, @subject = @Subject, @body = @Body END </code></pre> <p>But I get this error:</p> <pre><code>The EXECUTE permission was denied on the object 'sp_send_dbmail', database 'msdb', schema 'dbo'. </code></pre> <p>Thanks!</p> http://stackoverflow.com/questions/1797677/how-to-encrypt-all-existing-stored-procedures-of-a-database 0 How to encrypt all existing stored procedures of a database Marc 2009-11-25T15:27:36Z 2009-11-25T16:18:56Z <p>Is there any possibility to encrypt all existing stored procedures of a SQL Server 2008 database AFTER they have been created via an SQLCMD script?</p> <p>The reason I want to do this is the following:<br /> I'd like to develop the stored procedures without encryption so I can easily click on "Modify" in SQL Server Management Studio to check their contents.<br /> However, for the deployment I'd like to encrypt them so I thought that maybe I could write a script which encrypts them only after they're created. For dev systems I simply wouldn't run the script while on end-user systems the script would be run.</p> http://stackoverflow.com/questions/1790645/stored-proc-running-30-slower-through-java-versus-running-directly-on-database 4 Stored proc running 30% slower through Java versus running directly on database James B 2009-11-24T15:03:05Z 2009-11-25T15:39:56Z <p>Hi All,</p> <p>I'm using Java 1.6, JTDS 1.2.2 (also just tried 1.2.4 to no avail) and SQL Server 2005 to create a CallableStatement to run a stored procedure (with no parameters). I am seeing the Java wrapper running the same stored procedure 30% slower than using SQL Server Management Studio. I've run the MS SQL profiler and there is little difference in I/O between the two processes, so I don't think it's related to query plan caching.</p> <p>The stored proc takes no arguments and returns no data. It uses a server-side cursor to calculate the values that are needed to populate a table.</p> <p>I can't see how the calling a stored proc from Java should add a 30% overhead, surely it's just a pipe to the database that SQL is sent down and then the database executes it....Could the database be giving the Java app a different query plan??</p> <p>I've posted to both <a href="http://social.msdn.microsoft.com/Forums/en-US/transactsql/thread/9fd72536-f714-422a-b4c9-078e2ef365da/" rel="nofollow">the MSDN forums</a>, and the sourceforge JTDS forums (topic: "stored proc slower in JTDS than direct in DB") I was wondering if anyone has any suggestions as to why this might be happening?</p> <p>Thanks in advance,</p> <p>-James</p> <p>(N.B. Fear not, I will collate any answers I get in other forums together here once I find the solution)</p> <p>Java code snippet:</p> <pre><code>sLogger.info("Preparing call..."); stmt = mCon.prepareCall("SP_WB200_POPULATE_TABLE_limited_rows"); sLogger.info("Call prepared. Executing procedure..."); stmt.executeQuery(); sLogger.info("Procedure complete."); </code></pre> <p>I have run sql profiler, and found the following:</p> <p>Java app : CPU: 466,514 Reads: 142,478,387 Writes: 284,078 Duration: 983,796</p> <p>SSMS : CPU: 466,973 Reads: 142,440,401 Writes: 280,244 Duration: 769,851</p> <p>(Both with DBCC DROPCLEANBUFFERS run prior to profiling, and both produce the correct number of rows)</p> <p>So my conclusion is that they both execute the same reads and writes, it's just that the way they are doing it is different, what do you guys think?</p> <p>It turns out that the query plans are significantly different for the different clients (the Java client is updating an index during an insert that isn't in the faster SQL client, also, the way it is executing joins is different (nested loops Vs. gather streams, nested loops Vs index scans, argh!)). Quite why this is, I don't know yet (I'll re-post when I do get to the bottom of it)</p> http://stackoverflow.com/questions/59880/are-stored-procedures-more-efficient-in-general-than-inline-statements-on-moder 26 Are Stored Procedures more efficient, in general, than inline statements on modern RDBMS's? casademora 2008-09-12T20:32:25Z 2009-11-25T14:55:48Z <p>Conventional wisdom states that stored procedures are always faster. So, since they're always faster, use them <strong>ALL THE TIME</strong>.</p> <p>I am pretty sure this is grounded in some historical context where this was once the case. Now, I'm not advocating that Stored Procs are not needed, but I want to know in what cases stored procs are necessary in modern databases such as MySql, SqlServer, Oracle, or . Is it overkill to have ALL access through stored procs?</p> http://stackoverflow.com/questions/1796890/stored-procedures-not-that-fast 1 Stored Procedures not that fast? ApoY2k 2009-11-25T13:24:23Z 2009-11-25T13:41:28Z <p>Hoho there.</p> <p>I was just trying to enhance the performance of my application (.NET 3.5, C#) with the use of stored procedures.</p> <p>So I wrote a little test-app to see how much faster these are in comparison to normal queries which looks like this:</p> <pre><code> private static long _StartStored; private static long _EndStored; private static long _StartNormal; private static long _EndNormal; private static TimeSpan _StoredTime; private static TimeSpan _NormalTime; private static string[] _Stored = new string[102000]; private static string[] _Normal = new string[102000]; static void Main(string[] args) { Console.WriteLine("Querying 2000 normal queries"); _SQLConnection = new SqlConnection(/*my_connection*/); _SQLConnection.Open(); _StartNormal = DateTime.Now.Ticks; for (int i = 100000; i &lt;= 102000; i++) { DataTable _ResultDataTable = new DataTable(); SqlDataAdapter _SQLAdapter = new SqlDataAdapter(/*my_query*/, _SQLConnection); _SQLAdapter.Fill(_ResultDataTable); if (_ResultDataTable.Rows.Count &gt; 0) _Normal[i] = _ResultDataTable.Rows[0]["row"].ToString(); } _EndNormal = DateTime.Now.Ticks; _NormalTime = TimeSpan.FromTicks(_EndNormal - _StartNormal); Console.WriteLine("Total execution time: " + _NormalTime.ToString()); //----------------------------------------------------------------------------- Console.WriteLine("Querying 2000 stored procedures"); _StartStored = DateTime.Now.Ticks; SqlCommand _Cmd = new SqlCommand(/*my_sp*/, _SQLConnection); _Cmd.CommandType = CommandType.StoredProcedure; SqlParameter _Param = new SqlParameter("@param1", 0); _Cmd.Parameters.Add(_Param); for (int i = 100000; i &lt;= 102000; i++) { _Cmd.Parameters["@param1"].Value = i; SqlDataReader _Reader = _Cmd.ExecuteReader(); while (_Reader.Read()) { _Stored[i] = _Reader["StartWork"].ToString(); } _Reader.Close(); } _EndStored = DateTime.Now.Ticks; _StoredTime = TimeSpan.FromTicks(_EndStored - _StartStored); Console.WriteLine("Total execution time: " + _StoredTime.ToString()); </code></pre> <p>I'd love to shorten that code, but well... doesn't work :D</p> <p>TL;DR - 2000 stored procedures of the same query are only about 4 seconds faster, which seems quite low to me?</p> <p>Am I using the stored procedures wrong?</p> http://stackoverflow.com/questions/1789236/using-stored-procedure-in-crystal-report-8-5 0 Using stored procedure in crystal report 8.5? odiseh 2009-11-24T10:38:29Z 2009-11-25T13:31:50Z <p>I have made a new report using Crystal Reports 8.5 (report1) which uses a stored procedure as its data source. The stored procedure has 2 input parameters (@p1 and @p2) and when I enter some test data for @p1 and @p2 within crystal report IDE , every thing is all right. Then, I added the report1 in visual basic 6.0 IDE and added a new form (form1) and a crystal report viewer control on form1. Now please help me: I wanna to show the report1. What codes exactly should I write to show it?How send data user has entered to the stored procedure parameters via application? I also get this error messsage: the server has not been opened yet"</p> <p>What's wrong?</p> http://stackoverflow.com/questions/1791645/why-i-can-only-execute-a-stored-procedures-two-times 0 Why I can only execute a stored procedures two times? Bitnius 2009-11-24T17:30:59Z 2009-11-25T13:28:17Z <p>In my VB.NET code I construct a ODBC.COMMAND to call a stored procedure that eliminates a record from table in SQLSERVER 2008, I use this code in a FOR NEXT loop, it may contain 1 to 20 records_ID to pass to stored procedures to delete the records.</p> <p>This code work well for several months, but since the last compilation it only deletes the first 2 records.</p> <p>In debug mode in VS 2008 IDE works fine.</p> <p>VB.NET CODE</p> <pre><code> ''' &lt;summary&gt; ''' DELETE CANCELED CUSTOMER ORDERS ''' &lt;/summary&gt; ''' &lt;param name="sender"&gt;&lt;/param&gt; ''' &lt;param name="e"&gt;&lt;/param&gt; ''' &lt;remarks&gt;&lt;/remarks&gt; Private Sub tsbDiarioVenta_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles tsbDiarioVenta.Click On Error GoTo Proc_Err Using frmrslt As New BuscarForm() frmrslt.Titulo = "Elimina Diarios de Venta en Contabilidad" frmrslt.TextFieldID = "Cg_MovCab_ID" frmrslt.Sql = " SELECT TIPO_COMP, NUM_COMP, FEC_DOC, COD_AUX, COD_REF, NUM_REF, STATUS, Cg_MovCab_ID " &amp; _ " FROM Cg_MovCab " &amp; _ " WHERE COD_EMPR = " &amp; DataShared.gintCODEMPR &amp; _ " AND YEAR(FEC_DOC) = " &amp; Me.txtPER_ANUAL.Text &amp; _ " AND MONTH(FEC_DOC) = " &amp; Me.txtPER_MENSUAL.Text &amp; _ " AND COD_REF IN ('FAC', 'NV') " &amp; _ " ORDER BY 1,2 " frmrslt.ShowDialog() If frmrslt.Selected Then Debug.Print(frmrslt.CountRows.ToString) If frmrslt.CountRows &gt; 0 Then Cursor.Current = Cursors.WaitCursor frmrslt.StartRow() Dim idx As Integer For idx = 0 To frmrslt.CountRows Debug.Print(frmrslt.KeyValueID) ClsCgMovs.DeleteID(frmrslt.KeyValueID) frmrslt.NextRow() Next MsgBox(frmrslt.CountRows.ToString &amp; " Regs. Eliminados", MsgBoxStyle.Information, "Mensaje del Sistema") End If End If End Using Cursor.Current = Cursors.Default Exit Sub Proc_Err: Cursor.Current = Cursors.Default ErrHnd(Err.Number, Err.Description, ONDEBUG, "Frm_VtActLote: tsbDiarioVenta_Click: ", Erl) End Sub Public Function DeleteID(ByVal PRowID As Integer) As Boolean On Error GoTo Proc_Err Using odbcconn As New OdbcConnection(DataShared.gstrCNN) odbcconn.Open() Dim OdbcCmd As New OdbcCommand( _ "{ ?=CALL proc_Cg_MovCab_DeleteID(" &amp; PRowID &amp; ") }", odbcconn) OdbcCmd.Parameters.Add("@return", OdbcType.Int) OdbcCmd.Parameters("@return").Direction = ParameterDirection.ReturnValue OdbcCmd.ExecuteNonQuery() If CInt(OdbcCmd.Parameters("@return").Value) = 0 Then DeleteID = True Else DeleteID = False End If End Using Exit Function Proc_Err: ErrHnd(Err.Number, Err.Description, ONDEBUG, "ClsCgMovs: DeleteID: ") DeleteID = False End Function ALTER PROCEDURE [dbo].[proc_Cg_MovCab_DeleteID] ( @ID int ) AS SET NOCOUNT ON DECLARE @errornum int BEGIN TRAN DELETE FROM Cg_MovCab WHERE Cg_MovCab_ID = @ID SET @errornum = @@ERROR IF @errornum &lt;&gt; 0 GOTO PROC_ERR COMMIT TRAN RETURN @errornum PROC_ERR: ROLLBACK TRAN RETURN @errornum </code></pre> http://stackoverflow.com/questions/618985/sql-server-2005-full-text-forum-search 0 SQL Server 2005 Full Text forum Search Gavin Draper 2009-03-06T14:12:27Z 2009-11-24T23:24:49Z <p>I'm working on a search stored procedure for our existing forums.</p> <p>I've written the following code which uses standard SQL full text indexes, however I'm sure there is a better way of doing it and would like a point in the right direction.</p> <p>To give some info on how it needs to work, The page has 1 search text box which when clicked will search thread titles, thread descriptions and post text and should return the results with the title matches first, then descriptions then post data. </p> <p>Below is what I've written so far which works but is not elegant or as fast as I would like. To give an example of performance with 20K threads and 80K posts it takes about 12 seconds to search for 5 random words.</p> <pre><code>ALTER PROCEDURE [dbo].[SearchForums] ( --Input Params @SearchText VARCHAR(200), @GroupId INT = -1, @ClientId INT, --Paging Params @CurrentPage INT, @PageSize INT, @OutTotalRecCount INT OUTPUT ) AS --Create Temp Table to Store Query Data CREATE TABLE #SearchResults ( Relevance INT IDENTITY, ThreadID INT, PostID INT, [Description] VARCHAR(2000), Author BIGINT ) --Create and populate table of all GroupID's This search will return from CREATE TABLE #GroupsToSearch ( GroupId INT ) IF @GroupId = -1 BEGIN INSERT INTO #GroupsToSearch SELECT GroupID FROM SNetwork_Groups WHERE ClientId = @ClientId END ELSE BEGIN INSERT INTO #GroupsToSearch VALUES(@GroupId) END --Get Thread Titles INSERT INTO #SearchResults SELECT SNetwork_Threads.[ThreadId], (SELECT NULL) AS PostId, SNetwork_Threads.[Description], SNetwork_Threads.[OwnerUserId] FROM SNetwork_Threads INNER JOIN SNetwork_Groups ON SNetwork_Groups.GroupId = SNetwork_Threads.GroupId WHERE FREETEXT(SNetwork_Threads.[Description], @SearchText) AND Snetwork_Threads.GroupID IN (SELECT GroupID FROM #GroupsToSearch) AND SNetwork_Groups.ClientId = @ClientId --Get Thread Descriptions INSERT INTO #SearchResults SELECT SNetwork_Threads.[ThreadId], (SELECT NULL) AS PostId, SNetwork_Threads.[Description], SNetwork_Threads.[OwnerUserId] FROM SNetwork_Threads INNER JOIN SNetwork_Groups ON SNetwork_Groups.GroupId = SNetwork_Threads.GroupId WHERE FREETEXT(SNetwork_Threads.[Name], @SearchText) AND Snetwork_Threads.GroupID IN (SELECT GroupID FROM #GroupsToSearch) AND SNetwork_Groups.ClientId = @ClientId --Get Posts INSERT INTO #SearchResults SELECT SNetwork_Threads.ThreadId, SNetwork_Posts.PostId, SNetwork_Posts.PostText, SNetwork_Posts.[OwnerUserId] FROM SNetwork_Posts INNER JOIN SNetwork_Threads ON SNetwork_Threads.ThreadId = SNetwork_Posts.ThreadId INNER JOIN SNetwork_Groups ON SNetwork_Groups.GroupId = SNetwork_Threads.GroupId WHERE FREETEXT(SNetwork_Posts.PostText, @SearchText) AND Snetwork_Threads.GroupID IN (SELECT GroupID FROM #GroupsToSearch) AND SNetwork_Groups.ClientId = @ClientId --Return Paged Result Sets SELECT @OutTotalRecCount = COUNT(*) FROM #SearchResults SELECT #SearchResults.[ThreadID], #SearchResults.[PostID], #SearchResults.[Description], #SearchResults.[Author] FROM #SearchResults WHERE #SearchResults.[Relevance] &gt;= (@CurrentPage - 1) * @PageSize + 1 AND #SearchResults.[Relevance] &lt;= @CurrentPage*@PageSize ORDER BY Relevance ASC --Clean Up DROP TABLE #SearchResults DROP TABLE #GroupsToSearch </code></pre> <p>I know its a bit long winded but just a nudge in the right direction would be well appreciated.</p> <p>Incase it helps 80% of the query time is taken up when search posts and according to teh query plan is spent on "Clustered Index Scan" on the posts table. I cant see anyway around this.</p> <p>Thanks</p> <p>Gavin</p> http://stackoverflow.com/questions/1601939/stored-procedure-timing-out-drop-then-create-and-its-up-again 2 Stored Procedure Timing out.. Drop, then Create and it's up again? madcolor 2009-10-21T16:20:38Z 2009-11-24T21:56:55Z <p>I have a web-service that calls a stored procedure from a MS-SQL2005 DB. My Web-Service was timing out on a call to one of the stored procedures I have (this has been in production for a couple of months with no timeouts), so I tried running the query in Query Analyzer which also timed out. I decided to drop and recreate the stored procedure with no changes to the code and it started performing again.. </p> <p>Questions:</p> <p>Would this typically be an error in the TSQL of my Stored Procedure?</p> <p>-Or-</p> <p>Has anyone seen this and found that it is caused by some problem with the compilation of the Stored Procedure?</p> <p>Also, of course, any other insights on this are welcome as well.</p> <p>Similar:</p> <ul> <li><a href="http://stackoverflow.com/questions/1007397/sql-poor-stored-procedure-execution-plan-performance-parameter-sniffing">http://stackoverflow.com/questions/1007397/sql-poor-stored-procedure-execution-plan-performance-parameter-sniffing</a></li> <li><a href="http://stackoverflow.com/questions/211355/parameter-sniffing-or-spoofing-in-sql-server">http://stackoverflow.com/questions/211355/parameter-sniffing-or-spoofing-in-sql-server</a></li> </ul> http://stackoverflow.com/questions/1793055/how-to-parse-and-append-text-to-a-stored-procedure-in-sql-server-2005-via-a-param 0 How to Parse and Append text to a stored procedure in SQL Server 2005 via a parameter Kyle 2009-11-24T21:32:23Z 2009-11-24T21:48:30Z <p>Does anyone know of a way to append text to a stored procedure from within another stored procedure? I would like to do something like the following in SQL Server 2005:</p> <pre><code> Declare str as Nvarchar(Max) = '' set @spStr = dbo.spTest + 'Where testCol1 = ''Test''' exec(@spStr) </code></pre> <p>I understand this may open some discussion about SQL injection attacks. I'm simply looking to see if syntax exsists to extend a stored procedure by passing it a where clause dynamically in the above manner.</p> http://stackoverflow.com/questions/1792218/is-there-a-better-way-to-debug-wrong-number-or-types-of-arguments-in-call-error 1 Is there a better way to debug "wrong number or types of arguments in call" errors? Sean McMillan 2009-11-24T19:03:34Z 2009-11-24T21:39:31Z <p>So I've recently been vexed by problems similar to this one: <a href="http://stackoverflow.com/questions/950404/oracle-net-error-wrong-number-or-type-of-arguments">Oracle .NET error - Wrong number or type of arguments</a>. I know oracle is famous for its terrible error reporting, but this is a giant pain to debug -- if you have ten parameters, that's twenty things to check by hand (types and names,) not to mention the actual number of parameters, and if they're actually legitimate values.</p> <p>Is there some way to get better diagnostics on stored procedure calls to oracle?</p> http://stackoverflow.com/questions/1791174/sql-with-table-name-as-parameter-and-query-longer-than-4000-characters 3 SQL with table name as parameter and query longer than 4000 characters a432511 2009-11-24T16:24:21Z 2009-11-24T16:40:29Z <p>I am trying to write a stored procedure that takes a table name as a parameter. Yes I already know this is a security vulnerability, but this is an internal stored proc that doesn't face typical risks of SQL Injection.</p> <p>What I have so far is something like the following:</p> <pre><code>CREATE PROCEDURE [dbo].[myprocedure] @tableName sysname AS DECLARE @cmd nvarchar(4000) SET @cmd = N' Select blah blah from ' + @tableName EXEC (@cmd) GO </code></pre> <p>The query will work in theory, but my problem is that my query is longer than 4000 characters. Is there another way to use @tableName in a cmd variable longer than 4000 characters (which is nvarchar's max)?</p> http://stackoverflow.com/questions/1790900/how-to-manage-null-values-with-numeric-fields-in-cursor 0 How to manage NULL values with numeric fields in cursor? Bitnius 2009-11-24T15:44:15Z 2009-11-24T15:51:35Z <p>How to manage NULL values in numeric fields returned by cursor in Select stament, to manage efficienly aritmetic operations ?</p> http://stackoverflow.com/questions/1789413/sql-statement-with-dynamic-table-names-or-redesign 0 SQL-Statement with dynamic table-names or redesign? aaginor 2009-11-24T11:16:50Z 2009-11-24T15:40:57Z <p>I have a MS SQL 2008 database which stores data for creating a weighted, undirected graph. The data is stored in tables with the following structure:</p> <pre><code>[id1] [int] NOT NULL, [id2] [int] NOT NULL, [weight] [float] NOT NULL </code></pre> <p>where [id1] and [id2] represents the two connected nodes and [weight] the weight of the edge that connects these nodes.</p> <p>There are several different algorithms, that create the graph from some basic data. For each algorithm, I want to store the graph-data in a separate table. Those tables all have the same structure (as shown above) and use a specified prefix (similarityALB, similaritybyArticle, similaritybyCategory, ...) so I can identify them as graph-tables.</p> <p>The client program can select, which table (i.e. by which algorithm the graph is created) to use for the further operations.</p> <p>Access to the data is done by stored procedures. As I have different tables, I would need to use a variable tablename e.g.:</p> <pre><code>SELECT id1, id2, weight FROM @tableName </code></pre> <p>This doesn't work because SQL doesn't support variable tablenames in the statement. I have searched the web and all solutions to this problem use the dynamic SQL EXEC() statement e.g.:</p> <pre><code>EXEC('SELECT id1, id2, weight FROM ' + @tableName) </code></pre> <p>As most of them mentioned, this makes the statement prone to SQL-injection, which I'd like to avoid. A simple redesign idea would be to put all the different graphs in one table and add a column to identify the different graphs.</p> <pre><code>[graphId] [int] NOT NULL, [id1] [int] NOT NULL, [id2] [int] NOT NULL, [weight] [float] NOT NULL </code></pre> <p>My problem with this solution is, that the graphs can be very large depending on the used algorithm (up to 500 Million entries). I need to index the table over (id1, id2) and (id2, id1). Now putting them all in one big table would makes the table even huger (and requests slower). Adding a new graph would result in bad performance, because of the active indicees. Deleting a graph could not be done by TRUNCATE anymore, I would need to use </p> <pre><code>DELETE * FROM myTable WHERE graphId=@Id </code></pre> <p>which performs very bad with large tables and creates a very large logfile (which would exceed my disk space when the graph is big enough). So I'd like to keep the independent tables for each graph.</p> <p>Any suggestions how to solve this problems by either find a way to parametrize the tablename or to redesign the database structure while avoiding the aforementioned problems?</p> http://stackoverflow.com/questions/1789653/how-can-i-set-an-integer-varable-using-stored-procedure 0 How can i set an integer varable using stored procedure cagin 2009-11-24T12:06:39Z 2009-11-24T12:56:13Z <p>Hi there.</p> <pre><code>exec SP_HastaIcmal_AktifKaliciHastalar 25 </code></pre> <p>it returns 86.</p> <pre><code>DECLARE @iAktifKaliciHastalar int SET @iAktifKaliciHastalar = exec SP_HastaIcmal_AktifKaliciHastalar 25 </code></pre> <p>that code return error.</p> <pre><code>Msg 156, Level 15, State 1, Line 3 Incorrect syntax near the keyword 'exec'. </code></pre> http://stackoverflow.com/questions/1787629/anyway-to-decrypt-an-encrypted-sql-server-stored-procedure 0 Anyway to decrypt an encrypted sql server stored procedure? Snackmoore 2009-11-24T03:41:41Z 2009-11-24T04:48:19Z <p>Hi There,</p> <p>I have a couple of ms sql server (2000) stored procedures encrypted by ex-employee long time ago and things were okay until we need to change it a bit.... is there any way at all to retrieve the source? Or rewrite is the only option?</p> <p>Thanks a lot.</p> http://stackoverflow.com/questions/1107182/sybase-ase-your-server-command-encountered-a-deadlock-situation 1 Sybase ASE: "Your server command encountered a deadlock situation" Laurent 2009-07-10T00:48:56Z 2009-11-23T17:47:25Z <p>Hello,</p> <p>When running a stored procedure (from a .NET application) that does an INSERT and an UPDATE, I sometimes (but not that often, really) and randomly get this error:</p> <blockquote> <p>ERROR [40001] [DataDirect][ODBC Sybase Wire Protocol driver][SQL Server]Your server command (family id #0, process id #46) encountered a deadlock situation. Please re-run your command. </p> </blockquote> <p>How can I fix this?</p> <p>Thanks.</p> http://stackoverflow.com/questions/1783266/how-to-do-a-firebird-sp-select-from-table 1 How to do a firebird SP, SELECT * FROM "TABLE"? Zeqk 2009-11-23T13:58:07Z 2009-11-23T17:38:15Z <p>I'm migrating from SQL Server to Firebird</p> <p>in SQL Server</p> <pre><code>CREATE PROCEDURE Departments_GetAll AS SELECT * FROM Departments </code></pre> <p>I try in Firebird</p> <pre><code>CREATE PROCEDURE DEPARTMENTS_DELETEALL AS BEGIN SELECT * FROM "Departments"; END^ SET TERM ; ^ </code></pre> <p>But, dont work.</p> <p>return an error "SQL Code -104"</p> http://stackoverflow.com/questions/146543/what-is-the-best-way-to-version-control-my-sql-server-stored-procedures 12 What is the best way to version control my SQL server stored procedures? Vijesh VP 2008-09-28T19:31:07Z 2009-11-23T16:49:10Z <p>What is the best way to version control my database objects? I'm using Visual studio 2005/2008 and SQL server 2005. I would prefer a solution which can be used with SVN.</p> http://stackoverflow.com/questions/1780486/can-a-sql-server-trigger-send-me-an-email 2 Can a SQL Server Trigger send me an email? Pure.Krome 2009-11-23T00:01:59Z 2009-11-23T01:12:30Z <p>I wish to send an email from a <code>Trigger</code>, on my SQL Server 2008 machine. The data of the email will be, basically, some of the Trigger information.</p> <p>Can someone provide some simple/sample code on how to do this, please? E.g. what's the system stored procedure called? Etc.</p> <p>I've not set up any SQL mail and stuff, so I'm guessing it's built in and I can leverage that. But just to be sure: do I need to install any extra software on the server?</p>