Viewing 15 posts - 5,011 through 5,025 (of 6,395 total)
impersonation gone wrong?
new data source which isnt set to use the account?
May 17, 2012 at 6:57 am
That will be the issue, you shouldnt issue ALTER DATABASE master MODIFY FILE as the MDF and LDF locations are also stored in the SQL Server Configuration Manger which is...
May 17, 2012 at 6:54 am
did you issue ALTER DATABASE .... MODIFY FILE for the master database?
May 17, 2012 at 6:51 am
Some of that stuff you should be able to get from sys.dm_exec_sessions. HostName, ProgramName, ClientInterfaceName, LoginName, SessionID.
OS will be tricky but if you had a table of servers with...
May 17, 2012 at 6:45 am
Developer == Enterprise but with special license rules
Standard != Enterprise
You can install Standard over the top, but will be a named instance
May 17, 2012 at 5:58 am
you could script the procedures out and put them in a locked down share on the network where only read permissions are granted, could render the file in a pdf...
May 17, 2012 at 5:38 am
do you not enforce IP rights, where anything company related is the companies and if used elsewere is in breach of these rights and can lead to the developer being...
May 17, 2012 at 5:35 am
ravisamigo (5/17/2012)
I'm having some doubts on Edition upgrade.
1) We have SQLServer 2008 R2 Enterprise Evaluation edition now.
Can we apply SQLSerever 2008 R2 standard edition licence key?
2) Do we have...
May 17, 2012 at 5:28 am
well there is no difference between granting view definition and scripting, if they have 1 they can do the other, so the queston is, do you want to limit developers...
May 17, 2012 at 5:10 am
if you do SELECT RIGHT(@@SERVICENAME,2) what do you get?
typically in a default instance it will be ER, so trying to put characters into a number wont work.
May 17, 2012 at 4:47 am
if they have view definition then they will be able to script out the objects as you have explicitly granted them the access they need to view the definition of...
May 17, 2012 at 4:43 am
No, you cannot use a Standard licence for a Enterprise server.
You could install SQL 2012 Standard, and uninstall SQL 2008 Enterprise Trial
May 17, 2012 at 4:35 am
annoymous authentication to the web site - as it implies no authentication, everyone can see
forms based authentication - uses forms to authenticated to the web site
custom authentication - write your...
May 17, 2012 at 4:18 am
the only way to change a column from DateTime to INT would be to drop and re-add the column as its an explicit conversion
May 17, 2012 at 4:03 am
ALTER TABLE is implicit based, if you look at the CAST CONVERT MSDN page, DateTime to INT has to be explicit so you need to do CONVERT(INT,Dtt) but you cant...
May 17, 2012 at 3:50 am
Viewing 15 posts - 5,011 through 5,025 (of 6,395 total)