Criar banco de dados
Ult. Alteração: 13/02/2025
Alterado por: Henrique
Criando um banco de dados vazio (DB_IDE_AllegroLoja.mdf e DB_IDE_AllegroLoja_log.ldf).
Abra o SQL Server Management.
Selecione a base de dados master, clique com o botão direito do mouse e clique na opção "New Query".
Execute o script abaixo:
Create Database [DB_IDE_AllegroLoja]
on
(
name = DB_IDE_AllegroLoja_Data
,filename = 'C:\AllegroNet\DB_IDE_AllegroLoja.mdf'
,size = 100MB
,FILEGROWTH = 30MB )
log on
(
name = DB_IDE_AllegroLoja_log
,filename = 'C:\AllegroNet\DB_IDE_AllegroLoja_Log.ldf'
,size = 30MB
,FILEGROWTH = 30MB )
go
-- Fim do comando.
_
Created with the Personal Edition of HelpNDoc: Effortlessly Create High-Quality Documentation with a Help Authoring Tool