Forum Replies Created

Viewing 15 posts - 16 through 30 (of 3,010 total)

  • RE: disk drive is almost full

    shreekanth.kavali (2/22/2015)


    you received an alert "disk drive is almost full " for c drive "abc" server .what action will take and what all information you will provide for further action...

  • RE: backup tool

    Srl832 (2/3/2015)


    That's what I have been doing right now, but my manager wants me to centralize everything with regular restore jobs in place. I have been asked to come up...

  • RE: The Number that shouldn't be a number

    I worked at a place where consultants came up with a design for a high volume OLTP application that would completely replace SQL Server with XML flat files to store...

  • RE: increas Size of lof file After reindex and rebuild (9 GB)

    When you rebuild indexes, it generates a lot of transaction log records.

    How often are your transaction log backups running? If you don't run them often enough, the transaction logs...

  • RE: What is the prmary key then ?

    Luis Cazares (1/27/2015)


    The primary key is usually the same as the clustered index but that's not a rule. They're both independent as the process to define them is different. The...

  • RE: Grant Fritchey Reviews Minion Reindex

    Does it have the option of generating and displaying the rebuild or reorg commands without actually executing them? I guess I would call this a preview option. It...

  • RE: Server/database consolidation questions

    On thing you should not forget it the effort required by developers to change all the applications to point at the new instance name/database name.

    Developers and administrators usually are not...

  • RE: 3rd party tools for backup compression

    I haven't seen much improvement in compression using third party backup tools compared to the native SQL Server 2008R2 backup compression.

    Some of the third party backup tools have features you...

  • RE: Re-Indexed with the Wrong Fill Factor and Now All Databases Are Huge

    severnj (1/25/2015)


    Hi,

    Thank you all for the help on this. I tried the below listed steps but maybe I am doing something wrong? ...

  • RE: Re-Indexed with the Wrong Fill Factor and Now All Databases Are Huge

    You will have to re-index before you can shrink the databases, and then again afterwards to remove index fragmentation.

    Although there is a lot of space available in the database, is...

  • RE: Design vehicle and its parts database in SQL server

    This is probably a variation of a Bill of Materials design. There a usually many layers of parts for each sub-assembly, and the same part can occur in many...

  • RE: Query Returning Zero

    Alvin Ramard (1/20/2015)


    kabaari (1/19/2015)


    Alvin and Andrew,

    Those both achieved my goal. I was having difficulty with querying against a getDate() Inserted value. The time is also captured at insert which had...

  • RE: Query Returning Zero

    You have two impossible combinations in your selection criteria:

    MONTH(c.dateentered) >= 11 and (MONTH(c.dateentered) <= 01

    DAY(c.dateentered) >= 23 and DAY(c.dateentered) <= 19

    It appears you are looking for data from...

  • RE: Date format conversion

    As other people have mentioned, convert it to a date or datetime value first, and then convert it back to a string using the CONVERT, date, and string functions.

    Here are...

  • RE: is there any way to change sql server default isolation level ?

    dastagiri16 (1/2/2015)


    is there any way to change sql server default isolation level ?

    not for db level...entire sql server?

    Please advice

    No, there isn't. It's a connection setting, not a database...

Viewing 15 posts - 16 through 30 (of 3,010 total)