Viewing 15 posts - 16 through 30 (of 449 total)
If you just want Management Studio:
SQL Server Management Studio Express (SQLManagementStudio)
This does not contain the database, but only the tools to manage SQL Server instances, including LocalDB, SQL Express, SQL...
August 14, 2014 at 6:39 am
Hmm
You are using "read only routing" and setting the application intent parameter.
The best solution appears to be to change your application which is something you don't want to do. ...
August 7, 2014 at 7:02 am
I must have misunderstood your original post:
" run it from secondary-replica and it requires application-intent read only "
As you saw, there are three options "NO","YES","Read-Intent Only". Setting to "YES"...
July 3, 2014 at 7:07 am
Well, you could change the "Readable Secondary" to "YES", instead of "Read-Intent only".
That is the only way you will be able to read from the secondary db, unless the application...
July 3, 2014 at 6:51 am
a.Start SQL Server Configuration Manager
b.Protocols for <instance name>
c.Enable TCP/IP
d.Fix the port “IPALL” to use 1433 (or pick any other unused port)
e. ...
June 23, 2014 at 6:00 am
It's something I learned, or was taught many years ago.
Primarily if you are dealing with a cluster, everything should be done within the cluster manager since the cluster is...
June 19, 2014 at 9:36 am
JeepHound (6/18/2014)
June 19, 2014 at 7:59 am
You're welcome.
The developers should know how to do this, or figure it out.
Here's the class that they would use in their code:
http://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqlconnection(v=vs.110).aspx
Good luck
June 13, 2014 at 9:12 am
Yes, it would work in the code. They are establishing the sql connection inside the code and provide the server name parameter to the connection string. There shouldn't...
June 13, 2014 at 8:21 am
I'm in a .net shop and there are never issues with the named instances for connections. The connections are usually in the web.confg or appconfg files but who knows...
June 13, 2014 at 7:36 am
What are you looking to gain by doing it this way? Are each IP on a different NIC?
For the additional instance, the connection would just be:
myservername
myservername\sql2
myservername\sql3
or
myservername,portforinstance1
myservername,portforinstance2
myservername,portforinstance3
or
myservername,port1
myservername\sql2,port2
myservername\sql3,port3
or the above replacing...
June 13, 2014 at 7:13 am
No.
The IP address for the SQL Server Instance is the IP address of the server. The physical server will only have one IP address. If you have multiple...
June 13, 2014 at 6:05 am
How about using the "work as a group" option, so your team can figure it out together? Part of becoming a DBA is being able to work with a...
April 30, 2014 at 7:23 am
gbritton1 (4/25/2014)
April 30, 2014 at 7:16 am
BACKUP DATABASE xxx
April 11, 2014 at 7:35 am
Viewing 15 posts - 16 through 30 (of 449 total)