Viewing 6 posts - 1 through 6 (of 6 total)
Ok
I have a central database which holds all the member details including a person ID (This is not a live database this is for reporting, live databases are held...
February 23, 2011 at 1:39 am
Ok looks like I need to go back to basics. I never thought of transactions coming in during the process. where can I begin to look at marking rows. What's...
February 22, 2011 at 1:02 pm
Hi, this is what I was going to do, but I've been told not to use triggers.
CREATE
PROCEDURE USP_PAYMENTS
@PERSONID
VARCHAR(20),
@SCHOOLID
INT,
@AMOUNT
MONEY,
@REFERENCE
VARCHAR(50)
AS
CREATE
TABLE TMP_PAYMENTS
(
PERSONID VARCHAR...
February 22, 2011 at 12:42 am
Thanks both
I'm a newbie, will that be a right outter join as the only field that the two tables will have in common are the ones I'm searching for.
just to...
February 21, 2011 at 1:20 am
Thanxs
in the end I just ran the first line create..........
I'm now going to try and run a modify script to add the filegroup options and cross my fingers.
February 8, 2010 at 7:35 am
Hi and Thanx
I am setting it up on my lap top, which I'm administrator on.
this the SQL I'm using:
CREATE DATABASE SQL2008SBS ON PRIMARY
(NAME=N'SQL2008SBS', FILENAME=N'C:\PROGRAM FILES\MICROSOFT SQL SERVER\MSSQL10.SQLEXPRESS\MSSQL\DATA\SQL2008SBS.MDF',
SIZE=3MB,MAXSIZE=UNLIMITED,FILEGROWTH=10%),
FILEGROUP FG1 DEFAULT...
February 8, 2010 at 2:38 am
Viewing 6 posts - 1 through 6 (of 6 total)