Forum Replies Created

Viewing 15 posts - 61 through 75 (of 91 total)

  • RE: BACKUP STRATEGY.

    We have some servers that are in a cluster like environment (Marathon Endurance Server) but most of them are not. So what I do is I backup to a local...

  • RE: Transaction logs increased up to 16 GB

    Can some of you clarify something for me. Is this still an issue with SQL 2000. I have come across it many times with SQL 7 but I haven't (yet)...

  • RE: Report Generation

    I used to use earlier version of crystal reports about 4 years ago and at the time I swore I would avoid them again at all costs.

    I wasn't best pleased...

  • RE: Import / Export SQL Server 2000

    Just right click over a table in Enterprise manager, then choose All Tasks > Export data.

    (The same to import... All Tasks > Import data). You choose Text File from the...

  • RE: AutoNumber Field?

    Strnage when I tried this using the Import wizard on SQL 7.0 (on Wins 98) it worked ok!

    Surely you can change things on the 'Column Mappings and Transformations' form 'Transformations'...

  • RE: AutoNumber Field?

    That sample row of data from the text file would really help. Are you sure that DTS doesn't think there is more then one column in the import end of...

  • RE: Automation of documentation

    Thats the problem with everything now 'not enough spare time'.

    If only there was a stored proc for that one!

  • RE: Choice between cluster, log shipping and repl.

    If the money is available you could do worse then take a look at Marathon Endurance Server. Once setup its just like running SQL on one machine but with assured...

  • RE: Need help moving a table to another filegroup

    I assume (dangerous I know) that if rebuilding clustered indexes caused any such problems then you would have heard about it because its such a common practise and I also...

  • RE: Need help moving a table to another filegroup

    If you do this and go to the properties of the table in EM it will say the table is on whatever filegrouo you created the new Clustered index. I...

  • RE: Need help moving a table to another filegroup

    CREATE UNIQUE CLUSTERED

    INDEX [PK_Categories] ON [dbo].[Categories] ([CategoryID])

    WITH

    DROP_EXISTING

    ON [Secondary]

    [Secondary] <--- just change this to whatever filegroup

  • RE: Need help moving a table to another filegroup

    Surely if you move the CLUSTERED index to a new filegroup then SQL will move the data as well as the clustered index as the leaf level of the clustered...

  • RE: Need help moving a table to another filegroup

    If tell SQL to rebuild your clustered index you don't lose your triggers. If you did everytime you rebuilt your index you would have to rebuild your triggers. I have...

  • RE: Need help moving a table to another filegroup

    Maybe I am a bit sleepy today or something but if just rebuild the clustered index on your new filegroup why would you need to script user permissions, constraints, etc.....

  • RE: Need help moving a table to another filegroup

    Creata cursor that loops through the tables that you want to move.

    Inside the loop recreate the clustered index of the table in question on your new filegroup. (The file group...

Viewing 15 posts - 61 through 75 (of 91 total)