MSSQLTips.com - your daily source for SQL Server tips

Google
 
Web mssqltips.com

ESSENTIALS: Home | Tips | Search | Categories | Top 10 | Products | Authors | Blogs | Forums | Webcasts | Advertise | About
Browse by Tags -

in Search

Browse by Tags

All Tags » stored procedure (RSS)
  • Sql server Interview Questions

    Dear members, we provide a solution of bugs related to sql server along with study material and interview preparation of SQL server. click below link to get your solution http://mssqlinterview.blogspot.com/
    Posted to Forum by jmaneesh on 06-23-2008
  • diffrence in DBMS and RDBMS

    what is the diffrence in DBMS and RDBMS?
    Posted to Forum by gauravtheone on 05-04-2008
  • writing a stored procedure

    Hi, I have created a stored procedure which will delete a particular record in a table based on the input we give as a parameter. It is working fine. Here is the following code Code ------- Create procedure [dbo].[emp_insert] @Name nvarchar(15), @Age int, @DOB datetime, @BGRP nchar(10) as begin insert...
    Posted to Forum by CRPRAJAN on 03-07-2008
  • Re: combining 2 store procedre

    Firman, Here are a few options: Option 1 - New consolidated stored procedure CREATE PROCEDURE dbo.spConsolidated AS EXEC dbo.Sp_collecting EXEC dbo.sp_numtoWord GO Option 2 - Copy the code from the second stored procedure to the first stored procedure Option 3 - Have the first stored procedure call the...
    Posted to Forum by admin on 11-26-2007
  • Re: Query time out with sql server

    Samkry, These events in Profiler are what you need: Stored Procedures and select the SP:Recompile. The a long execution time for a stored procedure does not necessarily mean that it is recompiling. Thank you, The MSSQLTips.com Team
    Posted to Forum by admin on 11-10-2007
Page 1 of 1 (5 items)