Hi Ole
The following script will do it for you:
use master
go
-- create the database...this is the basic statement without
-- specify size or filegroup
CREATE DATABASE Test
GO
--create login and specify default database
EXEC sp_addlogin 'HANK', 'PASS', 'Test'
GO
-- specify database
use test
go
-- grant permissions
GRANT CREATE TABLE, CREATE DATABASE, CREATE PROCEDURE
TO test
GO
Something to note is that you can't grant or revoke permissions to create triggers.
Alternatively right click on databases in Enterprise Mng, Create Database...select options.
Under security in EM right click Logons, choose options, default database, password and database access.
John