Forum Replies Created

Viewing 15 posts - 301 through 315 (of 1,109 total)

  • RE: Bulk-Logged Recovery Model

    Lionel E. Nzenze (3/27/2008)


    Do a Full backup 1x a week (say Saturday night). Then do Differential Backups Daily (if you must) and caryy on with the Log backups as normal.

    Just...

  • RE: Comparing Strings......

    Ahmad Osama (3/26/2008)


    Hello! everyone 🙂

    Please help me to solve this .... how I should compare Convergys and Congys or similar type of strings...

    Regards,

    Ahmad

    Well, one way to compare them is to...

  • RE: Bulk-Logged Recovery Model

    Jeff is right, if you want point-in-time recovery you will need Full recovery mode.

    Concerning whether you can decrease the frequency of full backups, test, test, test, test! Imagine you...

  • RE: Tuning CASE Staement

    karthikeyan (3/26/2008)


    Hi All,

    I have to tune a SP which has more than 3000 lines.

    ...

    My Questions:

    1) Can we use more CASE statement in a single SELECT ? will it affect the...

  • RE: Bulk-Logged Recovery Model

    Anchelin (3/26/2008)


    Hello everyone

    I have a 1 TB database, recovery set to Bulk-Logged. I did a full backup of the database and applied log backups every 30 mins.

    My question/concern is, is...

  • RE: dynamic sql in a function

    SriSun (3/25/2008)


    Hi All,

    This is one of the example code.

    create table dbo.employee(ename nvarchar(32))

    insert dbo.employee values('Sri')

    insert dbo.employee values('Mike')

    declare @tablename nvarchar(128), @column_name nvarchar(32), @value nvarchar(32)

    declare @emp_status...

  • RE: Partial restore

    shikha.ssrivasatav (3/25/2008)


    hi friends :),

    can u help me about partial database recovery?

    how to perform this and what is this with example?

    thanks,

    Shikha Srivastava

    Books online has a good description of this http://msdn2.microsoft.com/en-us/library/ms177425.aspx

    Basically you...

  • RE: Reduce INITIAL SIZE of TEMPDB

    mjsteele (3/20/2008)


    Andras your solution worked. Thank you so much and I am sorry I doubted it at first.

    No worries 🙂 I'm glad that your problem is now resolved,

    Regards,

    ...

  • RE: Reduce INITIAL SIZE of TEMPDB

    Matt Miller (3/20/2008)


    Or - DBCC shrink to a size smaller than the initial size you wish. THEN issue the ALTER DATABASE command. No database service restart needed.

    Matt is...

  • RE: Reduce INITIAL SIZE of TEMPDB

    Just one more comment, you cannot set the initial size of tempdb to be smaller than the size of your model database, so if you have modified the size of...

  • RE: Reduce INITIAL SIZE of TEMPDB

    mjsteele (3/20/2008)


    No it deals with SIZE, which is different than INTIAL SIZE.

    🙂 Well, one more try:

    Management Studio will ignore your attempt to set the size of tempdb to an initial...

  • RE: Reduce INITIAL SIZE of TEMPDB

    mjsteele (3/20/2008)


    That article deals with shrinking TEMPDB, which I have done as a temporary stopgap. As soon as I restart SQLServer TEMPDB will be recreated with the INITIAL SIZE...

  • RE: Reduce INITIAL SIZE of TEMPDB

    Read http://support.microsoft.com/kb/307487

    It lists three was to lower the configured size of tempdb (and it explains this better than I could in a post response 🙂

    Regards,

    Andras

  • RE: dynamic sql in a function

    SriSun (3/20/2008)


    Hello to every one,

    I have two parameters

    @param1 = dbname.username.table_name

    @param2= value

    Is there any way that I pass these two parameters to a function and return a bit value either...

  • RE: Indexed Views in SQL Server 2000

    How much data do you have in your table/view? Are your statistics up to date? If use an index hint in your query, does it speed up your query?

    Regards,

    ...

Viewing 15 posts - 301 through 315 (of 1,109 total)