Forum Replies Created

Viewing 15 posts - 4,471 through 4,485 (of 49,571 total)

  • RE: FG restore

    Try taking the filegroup offline. If that works, try dropping the files in it, followed by dropping the filegroup

  • RE: FG restore

    You can, but you'll still have a defunct filegroup in the new database. The metadata of the DB knows that the database has 10 filegroups. If you restore all but...

  • RE: Database page Could not be processed?

    If you're getting repeated corruptions, there's likely a problem with your IO subsystem. Do some investigation and see if you can identify the problem, before something important gets affected.

  • RE: Transaction log shipping or Transactional replication which one is best?

    They're two completely different things, with completely different functions.

    If you're running the DB in full or bulk-logged recovery models, you must take log backups. Whether that's as a manual process...

  • RE: Speed up following query (Second opinion needed)

    You can start by getting rid of some of those DISTINCTs. It's unnecessary to distinct at every level, the duplicates aren't going to creep back.

    with Dates_ as

    (select distinct Date_ from...

  • RE: AlwaysOn: nice but our servers are virtualized

    Firstly, AlwaysOn is a marketing term, not a feature. The two features are Always On Failover Clustering and Always On Availability Groups

    I'm going to assume you mean Availability Groups, because...

  • RE: Problem attaching database to re-install of SQLExpress 2014

    First try run Management Studio as admin (right click shortcut, run as administrator)

    If that doesn't work, then you need to grant the service account which SQL Express is running under...

  • RE: Off Centre

    happygeek (10/17/2015)


    I think the tipping point was "I had a windows 7 laptop and the hard drive became faulty...." while following the debate on posted questions getting worse.

    That particular thread...

  • RE: Off Centre

    happygeek (10/17/2015)


    Should there be a limit to the number of postings or some other means of regulation?

    Why?

    The 5000 page thread (and there's only one of them) is a chat thread...

  • RE: how do I show all files uploaded to the server by a user?

    Without knowing the structure of your database, it's kinda impossible to answer.

    What is stored in the fName and filePath columns of the Employee table? Just the most recent upload?

    Is there...

  • RE: Database page Could not be processed?

    select object_name, * from epTracking_db.sys.indexes where object_id = 53575229 and index_id = 9

    The table's called 'ep_ACTION_track_Archive_20150819'

  • RE: Are the posted questions getting worse?

    The 'share with other machines on local network' option is awesome for me. I'll have two machines running Win 10 and one running Server 2012 R2. If I can save...

  • RE: Database page Could not be processed?

    Please look in sys.indexes, identify which index has an ID of 9 on the table with an objectid of 53575229.

    Drop that index and rerun the CheckDB.

  • RE: Database page Could not be processed?

    Please run the following and post the full and complete output.

    DBCC CheckDB ('<Database name>') WITH NO_INFOMSGS

    Do you have a clean backup and a full set of log backups since that...

  • RE: Simple Recovery model

    Same as in bulk logged and full recovery. Log records describing changes made to the database. The main difference with Simple recovery is how long the log records are retained,...

Viewing 15 posts - 4,471 through 4,485 (of 49,571 total)