Forum Replies Created

Viewing 15 posts - 5,491 through 5,505 (of 6,599 total)

  • RE: Different backup/restore sizes

    What are the sizes that you are seeing? Include the sizes for the backup, all data files (mdf/ndf) and the log files (ldf).

  • RE: Index Fragmentation/Identity Property

    Dave Mason (3/10/2009)All the db files are enabled for autogrowth by 50 MB.

    Okay, so how large are the databases now - and is an autogrowth of 50MB large enough? ...

  • RE: Index Fragmentation/Identity Property

    In addition to what Gail has mentioned, how much space is available in the data file? Do you have enough space available to rebuild indexes - or, do you...

  • RE: Cross tab query, without data aggregation

    Change your order by to a group by, and use sum:

    SELECT Company,

    Year,

    SUM(CASE WHEN Quarter...

  • RE: What if the IP addresses are inconsistent?

    SQL ORACLE (3/10/2009)


    Jeffrey:

    I know someone set it incorrectly. I know I have to change it (to virtual IP). What I would like to do is collect input what impact I...

  • RE: What if the IP addresses are inconsistent?

    SQL ORACLE (3/10/2009)


    Richard M (3/10/2009)


    If you have the users connect to the node specific IP address, you are not doing anything to "help" in case of a failover, as ...

  • RE: What if the IP addresses are inconsistent?

    The virtual IP address will not change. The users connect to the virtual IP address and not the node specific address. Cluster administrator redirects the virtual IP address...

  • RE: What if the IP addresses are inconsistent?

    I don't think there is anything to be fixed. When SQL Server is running on node 1 - it uses the IP address for that node. Cluster Administrator...

  • RE: DBCC SHRINKFILE

    bill (3/9/2009)STEP 2 (Conditional on STEP 1 being successful): BACKUP LOG sample_db TO sample_DbLog WITH INIT

    As soon as you issue the above command, you can no longer restore to a...

  • RE: BCP PROBLRM

    I may be missing something - so please correct me if I am wrong, but don't you need to specify which server you are going to connect to and whether...

  • RE: (Not so) Simple update query

    You can use a case expression:

    UPDATE dbo.Person

    SET City = CASE Extension

    ...

  • RE: "Script table as"

    Harold Buckner (3/6/2009)


    Most of the time when I use the "Script table as" option in SQL Management Studio it creates a Create Table script with all the columns. On this...

  • RE: SQL Server Agent

    Well, I would have to guess that this information is stored in the SSIS package. You would have to export the package and open it in BIDS to verify...

  • RE: SQL Server Agent

    another shot in the dark - but, run the following and let me know what you find:

    SELECT * FROM dbo.sysoriginatingservers;

    SELECT * FROM dbo.sysoriginatingservers_view;

  • RE: SQL Server Agent

    Check the command line for the SQL Agent Job. The command line should have something like:

    ESCAPE_NONE(SRVR) for the SRV parameter. Another shot in the dark...

Viewing 15 posts - 5,491 through 5,505 (of 6,599 total)