Viewing 15 posts - 496 through 510 (of 1,219 total)
Looks like it would be great if someone who knows Access can step in. But if all users look the same to SQL Server, there is not much you can...
January 22, 2014 at 2:28 pm
sqlfriends (1/22/2014)And by replacing sp_adduser with create user, there is no schema created for the user for all the databases except one - master, why in master database the ...
January 22, 2014 at 2:25 pm
sqlfriends (1/21/2014)
January 22, 2014 at 1:25 am
The user still has VIEW DEFINITION in the database, as it was granted VIEW ANY DEFINITION on server level.
That is, the user can see the definition of all tables, stored...
January 21, 2014 at 4:11 pm
As George says, the script adds the user to model and master as well. And it will probably will produce an error when it attempts to add the user to...
January 21, 2014 at 3:18 pm
Obviously, if all users look the same in SQL Server, there is not much you can do.
Then again, why would you not be able to set up the linked tables...
January 17, 2014 at 1:48 pm
Nah, the point with FileTable is exactly that it makes it possible to update the database from Explorer and similar. The difference between storing just a file path in the...
January 6, 2014 at 5:36 am
What I did not mention, but which you should be aware of is that a solution where the application sends the password to the database is open for a man-in-the-middle...
December 23, 2013 at 1:13 pm
You raise some valid questions there. Indeed, if it is possible to retrieve the encrypted data by running a stored procedure, you only have security by obscurity.
I can see three...
December 21, 2013 at 12:40 pm
To clarify what Keith is saying: to install security updates, you don't need any permissions in SQL Server at all, only in Windows.
December 10, 2013 at 4:02 pm
The syntax for CREATE SERVER AUDIT is:
[sql]
CREATE SERVER AUDIT audit_name
{
TO { [ FILE (<file_options> [ , ...n ] ) ] | APPLICATION_LOG | SECURITY_LOG }
...
November 29, 2013 at 2:45 pm
This is obviously a security issue, since this permits a user to replace an existing package that is scheduled to run with his own package which may do all sorts...
November 9, 2013 at 11:26 am
I've made some research and the query does indeed come from Activity Monitor. Furthermore, the query is the same in SQL 2012 SP1. And for that matter, SQL 2014 CTP2.
I...
October 22, 2013 at 3:07 pm
prennings (10/19/2013)
What do you mean by delta's?
From what you have told me, you are loading data from a Progress table every day. I assume that you don't make it just...
October 20, 2013 at 1:00 pm
ELLEN-610393 (10/18/2013)
LEFT OUTER JOIN sys.sysprocesses p WITH (NOLOCK) ON (s.session_id = p.spid)
Here is the problem. Sysprocess does not have one per process, it has one per process and execution context...
October 18, 2013 at 9:10 pm
Viewing 15 posts - 496 through 510 (of 1,219 total)