For "portability" of my application, can someone tell me if is it possible to create a
stored procedure using an ASP file, instead of logging into my SQL database? This would
make it easier to install the application on other websites, the "run once" file that
creates the database tables, columns, and initial data can also create the stored
procedures.
Second, can anyone show me a language reference for stored procedures? I can search for
and see plenty of EXAMPLES of stored procedures, but I can't find a language reference
for creating a new one.
Thanks!!!
Yes, could write an ASP file that creates the stored procedures. It
would pobably be simpler to put the procedures in separate files, and
then have you ASP program, to read these files and load the files,
rather than nesting the code into the ASP script.
> Second, can anyone show me a language reference for stored procedures? I
> can search for and see plenty of EXAMPLES of stored procedures, but I
> can't find a language reference for creating a new one.
Have you looked at the topic for CREATE PROCEDURE in Books Online?
--
Erland Sommarskog, SQL Server MVP, esq...@sommarskog.se
Links for SQL Server Books Online:
SQL 2008: http://msdn.microsoft.com/en-us/sqlserver/cc514207.aspx
SQL 2005: http://msdn.microsoft.com/en-us/sqlserver/bb895970.aspx
SQL 2000: http://www.microsoft.com/sql/prodinfo/previousversions/books.mspx
"Toni" <Ton...@yahoo.com> wrote in message
news:efEIoz8X...@TK2MSFTNGP04.phx.gbl...
It looks like CREATE PROCEDURE is what I'm looking for, thanks!
http://msdn.microsoft.com/en-us/library/aa258259%28SQL.80%29.aspx
Is SQL Server Management Studio (SSMS) only available for MS SQL 2005?
http://msdn.microsoft.com/en-us/library/ms174173.aspx
I'm asking because I can't find SSMS for MS SQL 2008, and I might upgrade.someday from
MSSQL2005 to MSSQL2008.
Thanks!!!
"Toni" <Ton...@yahoo.com> wrote in message
news:%23nI$35iYKH...@TK2MSFTNGP03.phx.gbl...
--
Rick Byham, MSFT
(Implies no warranty or rights)
"Uri Dimant" <ur...@iscar.co.il> wrote in message
news:ex9HOVqY...@TK2MSFTNGP02.phx.gbl...
I went to your link to download Management Studio. However, after I saved the file and
ran the .exe, it seems that it wants to install the full version of SQL Server 2008
Express - is that correct? And it will automatically install Management Studio during
the install?
Thanks,
Toni
"Rick Byham, MSFT" <ric...@microsoft.com> wrote in message
news:%236Fwrou...@TK2MSFTNGP05.phx.gbl...
"Toni" <Ton...@yahoo.com> wrote in message
news:uQTr6kIZ...@TK2MSFTNGP04.phx.gbl...