Search
 
SCRIPT & CODE EXAMPLE
 

SQL

PROSYS SQL


use ERPPRO;
Alter database ERPPRO modify file (name = ERPPRO, newname = ERPPRO_OLD)
Alter database ERPPRO modify file (name = ERPPRO_LOG, newname = ERPPRO_LOG_OLD)
select name, physical_name from ERPPRO.sys.database_files;

alter database ERPPRO set single_user with rollback immediate;
alter database ERPPRO set offline 
alter database ERPPRO modify file (name = ERPPRO_OLD, filename = 'D:DATAERPPRO_OLD.mdf')
alter database ERPPRO modify file (name = ERPPRO_LOG_OLD, filename = 'D:DATAERPPRO_LOG_OLD.ldf')
alter database ERPPRO set online;
alter database ERPPRO set multi_user;
Comment

PREVIOUS NEXT
Code Example
Sql :: oracle update multiple columns 
Sql :: select nth row in mysql 
Sql :: mysql phpmyadmin mysqli_construct:: error for mac user 
Sql :: oracle convert run_duration to number 
Sql :: how to make oppointment table in database 
Sql :: fill up postgres db 
Sql :: does sql auto increment start at number if it is removed? 
Sql :: sqdqsd 
Sql :: sql get frist of month 
Sql :: codeigniter 3 get best-selling products 
Sql :: normal mysql large import 
Sql :: classement rang mysql 7 
Sql :: Postgres: Update Boolean column with false if column contains null 
Sql :: sqlite3_open_v2 
Sql :: Pattern Sql Rlike same as REGEXP 
Sql :: sql constraint date greater than 
Sql :: create api project in visual studio 2019 and sql server 
Sql :: nth max in my sql 
Sql :: order by monthly in sql 
Sql :: oracle date winter time 
Sql :: from _sqlite3 import * ImportError: DLL load failed: Das angegebene Modul wurde nicht gefunden. 
Sql :: oracle create job if not exists 
Sql :: mysql server on and off 
Sql :: maximum number of tables in mysql 
Sql :: edit shchima table in sql 
Sql :: sqlite database file android studio 
Sql :: SOQL Child to parent 
Sql :: How to query data in many to many relationship in flask sql alchemy 
Sql :: mysql faster insert 
Sql :: sql select merge multiple values 
ADD CONTENT
Topic
Content
Source link
Name
7+8 =