RSS Links

 

Here are all of the RSS links for sections of this site

VB.NET/ASP.NET
 Java
 Unix/Linux
 Windows
 SQL Server

Home arrow SQL Server arrow Multiuser temporary tables in SQL Server
Multiuser temporary tables in SQL Server PDF Print E-mail
Friday, 28 November 2008
SQL Server can allow temporary tables for each user

for example

ALTER PROCEDURE dbo.JGR
AS
Declare @Yaks table (
tempId int,
bgID int
)

insert into @Yaks values ('1','1')
insert into @Yaks values ('1','2')
insert into @Yaks values ('1','3')

select * from @Yaks
RETURN

Last Updated ( Wednesday, 31 December 2008 )
 
< Prev   Next >
 
Designed by Graham Robinson Software