Forum Replies Created

Viewing 15 posts - 5,536 through 5,550 (of 6,678 total)

  • RE: Stop SSMS from prompting for connection when a sql script is opened

    John (3/23/2009)


    Sorry for not being clearer, I want to open the sql scripts after I have already connected and I want to newly opened files to use the connection that...

  • RE: General question about transaction log backups.

    If disk-space isn't as big an issue, and 1 hour data-loss is acceptable, is it worth simply just running a differential backup every hour and leaving it at that?

    We...

  • RE: T-Sql rant

    steve dassin (3/22/2009)

    --------------------------------------------------------------------------------

    I'm not saying sql is flawed. I'm saying sql is flawed when it comes to application development.

    I hear this from lots of people and I ask them the...

  • RE: General question about transaction log backups.

    JamesNZ (3/22/2009)


    If you schedule a transaction log backup every 15 mins, and do a nightly full backup at 9pm, what will happen to the transaction log backup job running every...

  • RE: Activity Monitor acting weired

    In addition to what Mohit has stated, each server you have open in Object Explorer will be a connection in Activity Monitor.

    You also will get a connection if you have...

  • RE: Backup Maintenance Plans failed

    Did you change the server name?

    Do you backup to a network share that is no longer available?

    Can you open the maintenance plans and verify the connection and setup for each...

  • RE: Stop SSMS from prompting for connection when a sql script is opened

    You can provide the default connection information:

    ssms -S.\InstanceName -E {filename}

    But, I don't know of any way to open a file disconnected unless you use the functionality available in SSMS to...

  • RE: Tables marked as System Table

    Attaching a SQL Server 2000 database to 2005 does not change tables from user to system. How are you determining that your tables are now marked as system tables?

    Run...

  • RE: Writing PermMon Counters directly to sql server 2005

    Are you aware of the fact that all of the SQL Server specific perfmon counters are already available from SQL Server?

    SELECT *

    FROM sys.dm_os_performance_counters;

    If you need to be...

  • RE: Maintenance plan has wrong connection information

    Unfortunately, you are going to have to recreate the plans. BTW - do you realize that you have probably already spent more time on trying to fix these than...

  • RE: 3GB switch not working

    Okay - I have to ask, but have you restarted the server since adding the switch to the boot.ini? Have you put the server under enough load to use...

  • RE: 3GB switch not working

    dave b (3/18/2009)


    The /3GB memory switch is not working on one of my servers. I have this switch enabled on two other servers and it works fine. All three servers...

  • RE: T-Sql rant

    INSERT INTO Category (CategoryTypeID, ParentID, Description, HasRelation)

    SELECT DISTINCT

    1 As CategoryTypeID

    ,Category.GenCategoryID Ad ParentID

    ...

  • RE: Maintenance plan has wrong connection information

    It is much easier to recreate the plans, but - there is one option that I know of that may fix the problem.

    Open BIDS and create a new Integration Services...

  • RE: Fastest way to add indexes to 9+ million records in a table

    Michael Valentine Jones (3/16/2009)


    Are you completely reloading the table each time, or just adding new rows to existing data?

    Dangit - should have thought about that question myself. 🙂

    However, I...

Viewing 15 posts - 5,536 through 5,550 (of 6,678 total)