Viewing 15 posts - 46 through 60 (of 5,393 total)
Yes, unless you have software assurance, which I expect to be much cheaper than SQL Server licenses.
September 22, 2016 at 1:42 am
When the second parameter is not passed to DBCC TRACEON it only affects the current session. If you want to set it globally, you need to pass the value -1...
September 21, 2016 at 4:55 am
64 works best with every type of workload in SQL Server.
See https://technet.microsoft.com/en-us/library/dd758814(v=sql.100).aspx
September 21, 2016 at 4:52 am
Duplicate post.
Replies here please: http://www.sqlservercentral.com/Forums/FindPost1818804.aspx
September 19, 2016 at 7:41 am
In the past, passive nodes did not need to be licensed.
With SQL Server 2014, you have to license all the nodes in a cluster, even if they are passive. The...
September 16, 2016 at 11:37 am
DECLARE @someValues TABLE (
[text] nvarchar(max)
);
INSERT INTO @someValues
SELECT N'This is a
multiline string' AS s
UNION ALL
SELECT N'But this is a'+ CHAR(10) +'unix multiline string' AS s;
SELECT subject
FROM @someValues AS sv
CROSS APPLY (
SELECT...
September 16, 2016 at 7:35 am
You always pay for the physical cores in the machine, regardless of the number of cores you assign to sql server with affinity or other means. On that machine you...
September 16, 2016 at 7:16 am
Welsh Corgi (9/14/2016)
Disable SQLAgent.Enabling unnecessary services will increase the risk of abuse by malicious users.
How can you run jobs if the SQL Server Agent is...
September 14, 2016 at 8:51 am
Screenshot? Why not a script?
Script will be more helpful next time you create publications and subscriptions.
September 14, 2016 at 8:50 am
Another option is using Extended Events and Data collector:
Monitoring blocking and deadlocking with Extended T-SQL Collector[/url]
September 13, 2016 at 5:05 am
Connect to the report server URL with your browser or with SSMS.
September 8, 2016 at 8:06 am
sqlcmd -L returns entries for SQL Server database engine instances, not for SSRS instances.
September 8, 2016 at 2:45 am
Is the SQL Server Agent service account a valid login on the server? Is it a syadmin?
September 6, 2016 at 8:48 am
No difference whatsoever.
DCL (users, permissions and the like) are highly dependant on the vedor dialect and the implementation. As far as I know, there is no standard for this.
Oracle, for...
September 6, 2016 at 8:42 am
Viewing 15 posts - 46 through 60 (of 5,393 total)