Viewing 14 posts - 1 through 14 (of 14 total)
Hi Andrey,
Thank You...
July 30, 2019 at 6:20 am
Hi Andrey,
SQL server 2014 Value = 1 and Value_in_use = 1
SQL server 2016 Value = 0 and Value_in_use = 0
Thank You
July 29, 2019 at 1:11 pm
Hi Andrey
Thank you,
BACKUP DATABASE [DBName]
TO DISK = N'E:\Old\DBName.bak' WITH NOFORMAT
, NOINIT
, NAME = N'DBName-Full Database Backup'
, SKIP
, NOREWIND
, NOUNLOAD
, STATS = 10
, compression
I run the above query...
July 29, 2019 at 12:47 pm
No I am not change recovery Model
July 29, 2019 at 12:38 pm
Hi Andrey,
Thank You
Data File Size : 4360 MB
Log File Size : 3398 MB
when I checked Both SQL server 2014 and 2016 Data File and Log file size was same.
the below...
July 29, 2019 at 12:28 pm
IP is Ping Correctly and also SSMS are login to access database
April 8, 2013 at 10:11 pm
DECLARE @Temp TABLE ([File] INT, Main INT, Sub CHAR(2), [Text] VARCHAR(20));
INSERT INTO @Temp ([File], Main, Sub, [Text])
VALUES (1, 1, 'A.', 'hello'),
...
August 14, 2012 at 3:25 am
I want to secure the backup file so it can't be restored elsewhere by any One.
I want to protect my backup file.
June 23, 2012 at 10:27 am
WITH DateYear AS
(
SELECT 0 AS num
UNION ALL
SELECT num + 1 FROM DateYear
...
September 2, 2011 at 11:18 pm
Use this Statement
OPTION (MAXRECURSION 0)
September 2, 2011 at 6:12 am
Viewing 14 posts - 1 through 14 (of 14 total)