Forum Replies Created

Viewing 15 posts - 781 through 795 (of 1,292 total)

  • RE: Changing the Authentication method

    Right click on the SQL Server in SSMS and select properties.

    In the properties dialog, you have multiple pages in the left page, select security page.

    It will display the current...

  • RE: run query with a string input into an int field

    That query will not work. Why and other info, its better you read Books Online.

    Use have many options to work with of which the below is 2 ways.

    select e.entID, e.entShortName,...

  • RE: Transfer SQL Server Objects Task

    Would like to reiterate what John said, more information please.

  • RE: Log File runing.... Disk out of space

    dmoldovan (12/1/2009)


    Bru Medishetty (12/1/2009)


    dmoldovan (11/30/2009)


    Also if you do bulk data import / inserts, change the recovery model to "bulk logged" or "simple". BOL will guide you through the steps you...

  • RE: SQL2005 to 2008 - Error converting VarChar to Datetime

    richardn-1128243 (12/1/2009)


    The data tyep is a [datetime], as it was in SQL2005 - I take it that [datetime2] is now the equivalent in SQL2008?

    I tested and confirmed that.

    You either...

  • RE: How to view sql server error logs?

    Use this Script.

    DECLARE @HOURS INT

    SET @HOURS = 24

    CREATE Table #ErrorLog (ErrorLog varchar(1000),ContinuationRow Int)

    Insert into #ErrorLog (ErrorLog,ContinuationRow)

    EXEC sp_readerrorlog

    Delete from #ErrorLog

    where (LEFT(LTRIM(ErrorLog),4) NOT LIKE Datepart(YYYY,getdate()) and ContinuationRow = 0)

    OR ContinuationRow...

  • RE: How to view sql server error logs?

    kevinsql7 (12/1/2009)


    We have SQL Server 2000 (SP4) running on Windows 2003 Server. In SQL EM, when I click on the current error log (8 mb in size) the EM hangs....

  • RE: Moving SSIS package

    May I suggest you to visit the blogs section of my site (site address in the signature) and look for the article on Nov 3rd "Deploying SSIS Packages"

    Post here...

  • RE: copying data from one sql server to another

    Yes, you can set up movement of data between different databases on same server or different servers.

    You need to script the tables that you need (at source) and create the...

  • RE: Can you Log ship between SQL 2008 and SQL 6.5

    tim_breslin (12/1/2009)


    I was asking on behalf of someone else so I'm not 100% sure what they're trying to achieve....

    Sounds like fun though...

    I guessed so ...:-)

  • RE: calculating log space and configuring notifications

    I did read in some best practices to have the log file of size 20% with respect to your database. In this case of db file, it would be roughly...

  • RE: Full Server Rebuild

    ldstpete (12/1/2009)


    Oh right, also - what about transferring the users, do you recommend the use of sp_help_revlogin?

    Thanks!

    Yes, sp_help_revlogin is the best way to transfer logins.

    You may be interested to...

  • RE: Setup Audit Logging Agent Jobs (custom output)

    You can edit the maintenance plans and when in design mode, you need to click on the icon. (See pictures is attached). You can enable extended logging and also choose...

  • RE: Can you Log ship between SQL 2008 and SQL 6.5

    george sibbald (12/1/2009)


    Bru Medishetty (12/1/2009)


    I wanted to know by not using why

    good point. Wasn't there a TV/radio program once where you had to do that?

    I am not sure.

    All I wanted...

  • RE: shrinking a datafile file

    doug turner (12/1/2009)


    Thanks. The indexing helped a little. I'm up to 1.6Gb free now. It looks like some major table cleanup is in order to really free...

Viewing 15 posts - 781 through 795 (of 1,292 total)