Viewing 15 posts - 2,266 through 2,280 (of 2,905 total)
Right... forgot about some of those things. SQL Server Browser service would be one of the things upgraded but won't harm anything with that being upgraded.
As long as you...
October 20, 2017 at 4:33 pm
Yep. I'd do a full backup and since it is a VM, I'd do a snapshot as well. It is a lot faster to restore from a snapshot than a...
October 20, 2017 at 4:18 pm
I would install things into separate folders. We generally install the shared stuff into the default folder (which is then separated by version) and the database files onto separate physical...
October 20, 2017 at 3:51 pm
Yeah, I would agree with that.
My knowledge of the IT world comes because I worked in IT prior to moving to being a software developer (mostly web based) and...
October 20, 2017 at 2:24 pm
Did you reboot the server after installing CU5?
October 20, 2017 at 11:21 am
That is a lot to bite off. If you want basic IT, I'd recommend looking at getting your A+ certification. If you want to specialize in servers, then I think...
October 20, 2017 at 11:17 am
One will return all of the columns and data from table1, the other will return nothing and just store the value 1 in the variable @num (presuming at least 1...
October 20, 2017 at 10:55 am
My opinion is that it depends. Some tasks are good to do in a stored procedure or function, while others are better to do in your code. It is a...
October 19, 2017 at 3:14 pm
I could be wrong, but I am fairly certain that the data would hit server C.
Server C would be doing all of the data transforms which SSIS is usually...
October 19, 2017 at 10:59 am
You can. That is actually how we have things running where I work. I have SQL 2008 R2, 2012 and 2016 all running on the same box.
October 18, 2017 at 2:15 pm
This may not be the most efficient method, but could you implement something like this:DECLARE @date DATE = '2017-04-17';
SELECT
CASE WHEN DATEPART(MONTH, @date) = DATEPART(MONTH,...
October 17, 2017 at 10:51 am
Instead of running "sp_addrolemember", try running
sp_addsrvrolemember <AD account>,'sysadmin'
October 12, 2017 at 2:22 pm
Am trying to create maintenance plans like backups using ssms in SQL Server...
October 12, 2017 at 11:18 am
Viewing 15 posts - 2,266 through 2,280 (of 2,905 total)