Forum Replies Created

Viewing 15 posts - 2,776 through 2,790 (of 3,061 total)

  • RE: Best Practice for Intranet DB

    Chris Harshman (1/2/2009)


    PaulB (12/31/2008)


    Nice. I'm pretty sure your SOX auditors are loving it, isn't it?

    Well, as I've stated previously I'm not really a .Net person, more a database person, so...

  • RE: Automate Backups

    Mike Levan (1/2/2009)


    Paresh

    What if some of the backups fail and how wud i re run job from that point of failure so that i dont need to run whole job...

  • RE: Transaction log growth with no db activity

    Paresh Prajapati (1/2/2009)


    I thik he is not taking transactional backup..

    Exactly. That's why I'm asking if he's aware his backup/recovery strategy does not allow for point-in-time recovery. 😉

  • RE: Enter in EM

    Looking at the provided information it looks like we are back to my initial answer, there is just one named instance in your system -no default instance shows up.

  • RE: Enter in EM

    If that's the case I assume you installed your default instance AFTER installing named instances. There are a couple of well known issues when that happens.

    Please check your registry for...

  • RE: Enter in EM

    If I got your scenario right you do not have a default instance, you have just one named instance. That's why.

  • RE: Transaction log growth with no db activity

    WayneS (1/1/2009)The differential backups are taking about 1-2 seconds, even at the end of the day. This way, I would only need to restore, at most, from 2 backup files......

  • RE: Transaction log growth with no db activity

    WayneS (1/1/2009)So, why is the transaction log growing without any activity on the database?

    On one hand I understand you expect not to have activity at those times but if transaction...

  • RE: change datatype of column

    Here is what I'd do.

    1- Add the new varchar2 column column_name_new as needed.

    2- Populate varchar2 column with a simple update statement.

    3- Rename old columns as column_name_old

    4- Rename new column_name_new as...

  • RE: Best Practice for Intranet DB

    Chris Harshman (12/30/2008)Well, we have to maintain and enforce security within our applications, instead of relying on Active Directory / Windows Authentication to dictate to the application what a users...

  • RE: Best Practice for Intranet DB

    Chris Harshman (12/30/2008)... you will want to only have a few limmited number of SQL Server logins, such as: administrative user, standard user, readonly user.

    I can see your organization...

  • RE: Primary key generation in Sql server database

    metro17 (12/29/2008)


    The script used to generate a primary key :

    USE [DATABASENAME]

    GO

    ALTER TABLE [dbo].[EmpPers] ADD CONSTRAINT [pk_EmpPers] PRIMARY KEY NONCLUSTERED

    (

    [EepEEID] ASC

    )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF,...

  • RE: Best Practice for Intranet DB

    This is a SQL Server forum, your question about best practices for developing an application might get better answers in an applications related one.

    In regards to the application backend -providing...

  • RE: Downgrade

    Saurabh Vegda (12/15/2008)


    Actually i want to perform an inplace downgrade. Is it possible to downgrade it without doing uninstall and then re-install it?

    No. There is no version downgrade procedure.

    1- Take...

  • RE: what is the use of Raid ?

    Nicholas Cain (12/15/2008)


    It's also excellent for getting rid of bugs

    http://www.killsbugsdead.com/raid/%5B/url%5D

    You made my day! 😀

Viewing 15 posts - 2,776 through 2,790 (of 3,061 total)