Forum Replies Created

Viewing 15 posts - 16 through 30 (of 45 total)

  • RE: how do you secure SQL against everyone?

    As said in previous posts, using staging servers can be a great first step; but I would add formal policies in the mix so that developers understand how serious the...

  • RE: Forcing MS Access db to connect to SQL as logged-in user

    Hi Marc,

    I am not too sure about the internals of Access regarding linked servers, but it sounds to me that the issue is related to the way the credentials are...

  • RE: Connection to database using NT authenication outside of our network

    Another approach would be to use 2 factor authentication for SQL Server - the logins would be database logins but hard tokens could be used to secure the logins and...

  • RE: accessing sql server with proxy

    Interesting question... not all Proxies can forward SQL connection requests.

    I only of two products that can be used as proxies - ISA Server and Enzo DB Firewall.

    Were you...

  • RE: setup kerberos authentication for SQL Server 2000

    Hello,

    SQL Server uses the OS security subsystem to provide network authentication. If you use a local windows account, NTLM will be used - not Kerberos.

    If you use a domain account...

  • RE: Security Primer Request

    Hi Goodguy,

    In short, you can't. Sorry for the bad news...

    Instead what other vendors do is keep a hash of their data structures and...

  • RE: Random jump in CPU for specific stored procedure....

    What if you add WITH RECOMPILE at the end of the procedure? I would be interested to know if you still get the same result with this option.

     

  • RE: Authentication Mode

    Windows Authentication is more secure by design. Creating database accounts basically creates shared accounts. Not to mention that it's pretty easy to sniff the network and find database account passwords when...

  • RE: Any idea how to monitor for databases that aren''''t being used anymore

    I am not sure what the objective is, but if all you want is a way to know which database hasn't been used in a while just look into sysprocesses...

  • RE: What can it be?

    Strange indeed... what version of SQL Server are you using? What version of the ODBC driver are you using? Also - do you have anything in the event log on...

  • RE: Trace user login

    You could setup a trace on Login events, store the events in a table and create a trigger on the table. The trigger can perform pretty whatever you want, including kicking off...

  • RE: Windows Authenticaion Woes

    You may need an authentication proxy to control who can use TOAD or Access and from where.

    If you can't change the application UID, then you may need to create a separate database...

  • RE: Access to Third Party Companies

    Well, this is a rather complex requirement... Let me take a shot at this. I am assuming you are looking for an integrated solution as opposed to a simple backup/restore...

  • RE: Windows Authentication over VPN

    Technically if your users are connecting through VPN using their network account (as they should) they should be able to connect to SQL Server as usual.

    Windows Authentication should work seemlessly.

    If...

  • RE: sa with Great Plains SOX compliance.

    Hi - If I understand your question you are trying to find out if you can identify who is using the 'sa' account and from where.

    There is a solution out...

Viewing 15 posts - 16 through 30 (of 45 total)