Creacion de tablas con valores predeterminados e indices
CREATE TABLE dbo.status_tabla ( id int NOT NULL, status_tabla nvarchar(50) NOT NULL ) ON [PRIMARY] GO ALTER TABLE dbo.status_tabla ADD CONSTRAINT PK_status_tabla PRIMARY KEY CLUSTERED ( id ) WITH( STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] GO CREATE UNIQUE NONCLUSTERED INDEX IX_status_tabla ON dbo.status_tabla ( status_tabla ) WITH( […]
Creacion de tablas, valores predeterminados e integridad referencial en SQL Server
CREATE TABLE dbo.presupuesto ( id int NOT NULL, idorden int NOT NULL, fecha smalldatetime NOT NULL, idusuario_captura int NOT NULL, fechautoriza smalldatetime NULL, idusuario_autoriza int NOT NULL, importotal money NOT NULL, idstatus_presupuesto int NOT NULL ) ON [PRIMARY] GO ALTER TABLE dbo.presupuesto ADD CONSTRAINT DF_presupuesto_fecha DEFAULT GETDATE() FOR fecha GO ALTER TABLE dbo.presupuesto ADD CONSTRAINT […]
Truncar registro de transacciones en SQL 2008
Instrucciones para truncar el registro de transacciones de SQL Server 2008; solo es necesario cambiar BASEDEDATOS por el nombre real de la base de datos. CHECKPOINT GO BACKUP LOG SAEM TO DISK=’NUL:’ GO DBCC SHRINKDATABASE (SAEM , 10) GO
Firewall Rule for Sql Server 2008 on Windows 7
Para permitir el acceso a SQL Server mediante la intranet realizar lo siguiente: Entrar al grupo de programas Microsoft SQL Server 2008 R2 -> Herramientas de configuración -> Administrador de configuración de SQL Server y en la seccion de Configuracion de red de la instancia de SQL Server Habilitar el protocolo TCP/IP Posteriormente proceder con […]
How to: Stop an Instance of SQL Server (net Commands)
To stop the default instance of SQL Server From a command prompt, enter one of the following commands: net stop «SQL Server (MSSQLSERVER)» -or- net stop MSSQLSERVER To stop a named instance of SQL Server From a command prompt, enter one of the following commands. Replace instancename with the name of the instance you want […]
Truncar registro de transacciones en SQL 2005
Instrucciones para truncar el registro de transacciones de SQL Server 2005; solo es necesario cambiar BASEDEDATOS por el nombre real de la base de datos. CHECKPOINT GO CHECKPOINT GO BACKUP LOG BASEDEDATOS WITH TRUNCATE_ONLY GO DBCC SHRINKDATABASE (BASEDEDATOS , 10) GO