Viewing 15 posts - 2,401 through 2,415 (of 2,567 total)
May 6, 2017 at 1:56 am
SSMS version has nothing to do with the Instance version - they are 2 independent products.
you could easily be using SSMS 2017 with a 2008 R2 database
So...
May 6, 2017 at 1:06 am
from the licensing terms at https://docs.microsoft.com/en-us/sql/ssdt/sql-server-data-tools-license-terms
Installation and Use.
You may install and use any number of copies of the software on your devices to design,...
April 24, 2017 at 4:46 am
April 21, 2017 at 3:27 pm
Setting compatibility mode is a database level permission (alter database) if not mistaken.
create user is securityadmin or alter any login (no need for sysadmin)
CLR is...
April 21, 2017 at 12:26 pm
only differences between Developer and Enterprise is that the enterprise version may be limited by the number of cores it uses.
If for some reason the Enterprise version used is...
April 21, 2017 at 12:07 pm
April 19, 2017 at 10:57 am
On the particular sample of data you supplied it seems that everything field is within double quotes without exception.
That being the case would it not be an easy...
April 19, 2017 at 10:34 am
try changing the header delimiter to LF - there is a discrepancy between the header and row delimiters.
And what I have found before is that where there is...
April 11, 2017 at 5:34 am
I would say it may require one of the following
sysadmin - but should not be granted
dbowner - should be avoided
view definition (database level) or view any...
April 8, 2017 at 9:45 am
Regarding the links that Jeff posted be aware of some of the issues with it.
Firstly the Attunity driver is only for Enterprise Edition.
As for the driver itself.
April 5, 2017 at 5:13 pm
are both same exactly the same spec?
mainly memory but also
number cores
size of databases - are they same size as prod? - having one or more tables...
April 4, 2017 at 12:37 pm
does this work? without setting location
get-item "\\pathToPolicyfiles\policy.xml" | Invoke-PolicyEvaluation -TargetServer "servername"
March 31, 2017 at 11:15 am
Although the examples there do not use a network share, the Get-ChildItem can get them from there with no issues, and you pipe the file onto...
March 31, 2017 at 1:10 am
but ...
DECLARE @T table (data char(1))
Insert @T (data) values ('A')
Insert @T (data) values ('a')
Insert @T (data) values ('B')
Insert @T (data) values ('b')
March 29, 2017 at 4:08 pm
Viewing 15 posts - 2,401 through 2,415 (of 2,567 total)