Re: New to SQL server
- From: "onedaywhen" <jamiecollins@xxxxxxxxxx>
- Date: 30 Nov 2006 10:23:52 -0800
aaron.kempf@xxxxxxxxx wrote:
CREATE TABLE OrgChart (
employeeID INTEGER NOT NULL UNIQUE,
manager_employeeID INTEGER
REFERENCES OrgChart (employeeID)
ON DELETE SET NULL
ON UPDATE CASCADE);
wouldn't work in SQL Server since I don't have a table named OrgChart
Try reading that again (hint: CREATE TABLE OrgChart...?)
how about this.. Right-Click CREATE SCRIPT for all your MDB tables and
queries LoL
Have you seen the code it writes: proprietary syntax, weird casing,
peppered with parens and brackets, ...yuk! I have my own tool that
works on both Jet and SQL Server, SQL-92 standard syntax where
possible, SQL keywords in uppercase, etc. Lovely.
dude what about when you need to split your backend into multiple files
because you get a single table that is approaching 1gb?
I can assure you, sir, my backend does not require splitting. ROFL.
Jamie.
--
.
- Follow-Ups:
- Re: New to SQL server
- From: aaron.kempf@xxxxxxxxx
- Re: New to SQL server
- From: dbahooker@xxxxxxxxxxx
- Re: New to SQL server
- From: dbahooker@xxxxxxxxxxx
- Re: New to SQL server
- References:
- Re: New to SQL server
- From: Bill Edwards
- Re: New to SQL server
- From: aaron.kempf@xxxxxxxxx
- Re: New to SQL server
- From: aaron.kempf@xxxxxxxxx
- Re: New to SQL server
- From: onedaywhen
- Re: New to SQL server
- From: aaron.kempf@xxxxxxxxx
- Re: New to SQL server
- Prev by Date: Re: New to SQL server
- Next by Date: Saving a check in SQL
- Previous by thread: Re: New to SQL server
- Next by thread: Re: New to SQL server
- Index(es):
Relevant Pages
|