Forum Replies Created

Viewing 15 posts - 361 through 375 (of 972 total)

  • RE: audit

    You should find them in the LOG directory: X:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\LOG

    Drive letter and full path may vary depending on how you installed your instance.

    You can use this query to...

  • RE: audit

    Well the filename usually follows "Log_XX.trc". With "XX" being a sequential number as the trace file roles over to a new file.

    If you are wanting to look through older trace...

  • RE: audit

    If you keep the trace files from your default trace then yes it should be. The downside is if you want to query it, you will have to load in...

  • RE: audit

    Well I played around with the local instance I have running on my desktop and by just running the copy database wizard, choosing detach/attach method I copied a database. Then...

  • RE: Removing datetime from backup filename

    Dan.Humphries (4/25/2011)


    The problem: In SQL Server 2005, the Maintenance Plan we're using insists on tacking on the date and time to each backup.

    I am curious about this part. ...

  • RE: Best way to move the log file to a different drive

    dajonx (4/22/2011)


    Please verify this, but I believe you can do a modify file to the new location, then do a restart on SQL service via the Configuration Manager.

    If you just...

  • RE: please advise me .how to rectify this error

    Well have you tried to search for the error?

    If not I would suggest enabling remote access to the SQL Server instance you are trying to connect to.

  • RE: Query to get the lisst of logins having sysadmin and serveradmin

    exec sp_helpsrvrolemember 'sysadmin'

    exec sp_helpsrvrolemember 'serveradmin'

  • RE: SQL2005 32bit Standard AWE switch?

    32-bit architecture address space is limited to no more than 4GB. If you have a server with 8GB, it will never use more than 4GB of it. That is the...

  • RE: SQL2005 32bit Standard AWE switch?

    Unless I'm mistaken when you purchase the license for Window Server and SQL Server they are not dependent upon 32-bit or 64-bit. You are allowed to use either architecture. You...

  • RE: Powershell for SQL Server 2005 SP3 on Windows 2003 server.

    SQL Server PowerShell (sqlps) only comes with SQL Server 2008+

  • RE: Transfer DBs between SQL2K, SQL2K8

    schleep (4/15/2011)


    So I've set TransferAllViews = $False, how do I add that collection to the transfer ObjectList?

    How are the other objects you are transfering added?

    Can you provide the full code...

  • RE: Anonymous user.

    Not to sure what you mean by anonymous user. For anyone to connect to your SQL instance they first have to have a login active, then a user account to...

  • RE: Using the SA account

    If you are in a domain yes. I believe you still can if you are not in a domain. I'm not to sure on that one, it has been a...

  • RE: Using the SA account

    To add on to that if at all possible I would use a Windows authenticated account, versus a SQL Login (what the sa account is). It adds a little bit...

Viewing 15 posts - 361 through 375 (of 972 total)