Forum Replies Created

Viewing 15 posts - 46,951 through 46,965 (of 49,571 total)

  • RE: Flush the queries from the RAM

    It might. It's worth trying, though there are a lot of possible reasons for recompiles.

  • RE: SQL Server 2005 max memory and /3GB switch

    laker_42 (4/10/2008)


    As Gilamonstor stated, if you are only using 4gb, you don't need to use AWE or the switches. Just set your min & max memory levels for SQL:

    That's...

  • RE: Flush the queries from the RAM

    If you convert the query into a stored proc and change all the front end calls to reference that proc yes it will help.

    I would also suggst that you change...

  • RE: Newbie question

    There's no such thing as a stupid question.... 😀

    The order of your statements is fine. The problem is your exists statement

    If not exists(select * from IPPxCdr where name = 'Users')

    I'm...

  • RE: want only date portion from datetime datatype in UPDATE statement

    If you only want the day (ie from 2008/04/10 you just want 10) then look at either the datepart function or the day function. Both will do wahat you want.

    SELECT...

  • RE: Database Status SUSPECT

    Personally I don't see anything harsh in what he said. If the comment had been something like "You idiot, you're posting in the wrong #$%#$@ forum", then it would be...

  • RE: Flush the queries from the RAM

    Your best bet will be to convert it to a stored proc and cahnge whatever's calling it.

    How is that query being called? Front end app? Dynamic SQL?

  • RE: Database Status SUSPECT

    Robert (4/10/2008)


    Many people work with both ss2k and ss2005, so a forum like this is not necessarily strict ss2005.

    There's a SQL 2000 data corruption forum as well here. Posting...

  • RE: Entry in event log every 10 secs - Help!

    Should do. Just keep an eye on it for a while, make sure nothing else breaks

  • RE: Entry in event log every 10 secs - Help!

    Enterprise manager is one of the management tools for SQL Server. It shouldn't be installed on the server, only on client machines. If you have an installation disk for SQL...

  • RE: Confused over SERVER terms?

    John (4/9/2008)


    1) It appears that all of the DATABASES that I want to work with MUST be in the C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Data folder.

    Only because that's where the SQL engine...

  • RE: Clustered index

    No need to drop the table or the index

    ALTER INDEX <Index name> ON <Table Name> REBUILD

  • RE: Gigantic transaction log - why?!

    What does the following query return?

    select name, recovery_model_desc, log_reuse_wait_desc

    from sys.databases where name = <Name of offending database>

  • RE: Attached Database viewed in read only mode

    Could you please have a look in the SQL error log (In object explorer) it'll be under Management ->SQL Server Logs.

    Check to see what's there around the time you...

  • RE: Splitting

    karthikeyan (4/8/2008)


    yes you are correct,we can seperate it in the DTS itself.

    But i want to do this with sql query.

    Why?

    The best way to split apart imported data is as...

Viewing 15 posts - 46,951 through 46,965 (of 49,571 total)