Forum Replies Created

Viewing 15 posts - 826 through 840 (of 2,897 total)

  • RE: question about DR (recovering a sql server)

    .mdf & .ldf file backups aren't of much use if SQL is active. Are you taking proper SQL database backups regularly ? "BACKUP DATABASE MyDatabase ..."

  • RE: 'PRIMARY' filegroup is full

    GilaMonster (9/12/2011)


    Note that the restriction on the log file is actually not a restriction. It's 2048 TB, the maximum allowable size for a log file ever.

    oops ... good catch

    So, if...

  • RE: 'PRIMARY' filegroup is full

    Are any of your data files set to "restricted" like your log file is ?

  • RE: 'PRIMARY' filegroup is full

    Krasavita (9/12/2011)


    So I will change

    1.FileGrowth in Megabytes from 500 to 1024 primary

    (2.FileGrowth in Megabytes from 100 to 500 filegroup=datafile2

    3.FileGrowth in Megabytes from 100 to 500 (enable autogroth is checked)filegroup=docs

    4.FileGrowth...

  • RE: 'PRIMARY' filegroup is full

    You can use this to find big tables, but not sure what it has to do with your current problem.

    SELECT substring(o.name,1,50) as 'Table Name',

    ddps.row_count , used_page_count--, *

    FROM sys.indexes AS...

  • RE: Back up

    You could take a full backup once a week, and a differential daily, and then possibly transaction logs, depending on activity and the importance of the dev data.

  • RE: How to archive a db in sql server 2008 ?

    Ivan, "Archive" is a simple word with many possible complexities.

    it might help if you could explain your goals. What is the current environment ? What do the users need...

  • RE: Back up

    If it is a copy of production on a dev server, you will not "break" anything by stopping backups. Stopping backups means you cannot recover it if you need to,...

  • RE: Backup Software Selection

    I liked Idera's tool at my previous job, but now use Redgate backup which is ok too.

    Most tools offer a free trial so you can try them out.

  • RE: tempdb got big

    Is there a "rule of thumb" estimate of a reasonable tempdb database size in comparison the the databases on the server ? I know that the processes being...

  • RE: sp_msforeachtable

    amitchaudhury (8/23/2011)


    how can use to find records after a certain date/time if knew the column name...

    Thanks

    Can you be more specific about the details of what you want to do ??

  • RE: Formula in Excel?

    Then you could embed the select statement in Excel and run that instead of the sp.

    It's been a while, but I think there's some Excel add-in you need.

  • RE: self blockings

    I don't think there's anything necessarily wrong with self blocking.

  • RE: Formula in Excel?

    You could write a stored procedure, then have Excel run the sp to load the data, or export from SQL into Excel.

Viewing 15 posts - 826 through 840 (of 2,897 total)