Viewing 15 posts - 106 through 120 (of 1,417 total)
It's a configuration setting. See this article... Configure the two digit year cutoff
December 16, 2016 at 4:13 am
You don't need to start from the beginning to put the database in stand-by mode again. You can just restore the file that was being restored when your SSMS stopped....
December 16, 2016 at 1:34 am
Audit has certainly it's purpose, but be aware it can generate a lot of data and it could be hard to filter out exactly what you need.
If you only need...
December 16, 2016 at 12:36 am
andrew 64169 (12/13/2016)
'BEGIN ' + #13...
December 14, 2016 at 3:41 am
First: with a REBUILD of the indexes the stats are updated also. Thus it is not necessary te run a separate UPDATE STATS again.
In your described situation if you need...
December 14, 2016 at 3:01 am
Determine your backup strategy by the requirement for the restore (RPO and RTO). How much data is allowed to be lost (= RPO) and how long is data to be...
December 9, 2016 at 6:11 am
And another article... Gotcha for Installing SQL Server 2016 and SSMS on Windows Server 2012 R2[/url]
December 9, 2016 at 4:47 am
simon_s (12/9/2016)
.... (I've even tried manually tried installing the KB but it fails with "The Update is Not applicable to Your Computer)
December 9, 2016 at 4:45 am
From my own experience the MCSA is a certification that let people know yo have a general MS SQL data platform knowledge. Whether it is SQL2012, SQL2014 or SQL2016 is...
December 9, 2016 at 3:36 am
No, you can't skip the SP3 installation. It's a cumulative update upon the SP install.
As written on the Microsoft page:
Prerequisites
To apply this cumulative update package, you must be running SQL...
December 9, 2016 at 3:29 am
jay-h (12/2/2016)
As it is, the job system is an awkward fit into the SQL management world. You can do a lot with it,...
December 8, 2016 at 2:19 am
Because you already use MS Access as a sort of front-end, I wouldn't change it. Just upgrade to the latest version and fix some compatibiliy issues (if any). The number...
November 25, 2016 at 8:09 am
Below query will give you the desired results:
declare @table table (ID bigint,
Name varchar(50),
Address varchar(250),
RecDate smalldatetime,
PurPrice decimal(7,2),
PaidBy varchar(50)
)
insert into @table
values (1, 'Peter', 'Street 1', '2016-11-22', 100, 'PayPal')
, (2, 'John', 'Lane 1',...
November 25, 2016 at 7:50 am
You can start by running the Upgrade Advisor from Microsoft. Besides you can also run the profiler for a period of time that logs the "Deprecation Announcement" and the "Deprecation...
November 25, 2016 at 7:30 am
Viewing 15 posts - 106 through 120 (of 1,417 total)