asked on
USE [A_DATABASE]
GO
/****** Object: StoredProcedure [dbo].[SPS_SelectItems] Script Date: 05/18/2011 21:21:35 ******/
SET ANSI_NULLS OFF
GO
SET QUOTED_IDENTIFIER OFF
GO
ALTER PROCEDURE [dbo].[SPS_SelectItems]
@CompanyID bigint
AS
SELECT a.*
FROM purch_item a
WHERE a.company_id = @CompanyID
ORDER BY a.item_description
Microsoft SQL Server is a suite of relational database management system (RDBMS) products providing multi-user database access functionality.SQL Server is available in multiple versions, typically identified by release year, and versions are subdivided into editions to distinguish between product functionality. Component services include integration (SSIS), reporting (SSRS), analysis (SSAS), data quality, master data, T-SQL and performance tuning.
TRUSTED BY
ASKER
If so, what are the ramifications or sticking points in including it or not including. In my MS SQL-based marketable apps allow for installation of SQL Server where the installer can change the name of the database in the installation and the connection strings used to connect in VB have that database as the initial database. It would be catastrophic if they were hard-coded I would think.
At any rate, this is exactly what I was looking for.
Thanks Kevin.