Forum Replies Created

Viewing 15 posts - 316 through 330 (of 1,170 total)

  • RE: Find Table dependency in SQL

    Press Alt+F1 for a selected table name in ssms editor, and see the results.

  • RE: Scripting CREATE INDEX Statements Automatically From Your Tables

    Very handy script.

    However, I found a little bug, and here is a recommendation for the little change in the script.

    Replace ip.[column_name] with '['+ ip.[column_name]+']' in two places.

    Having column names...

  • RE: How Much Memory for New SQL Server 2014 Server

    The max memory that you could use with standard edition is 128GB. Go with max, if you can allow it.

  • RE: Location of mdf and ldf

    Execute this code

    select d.name,mf.name,mf.physical_name

    from sys.databases d

    inner join sys.master_files mf on mf.database_id=d.database_id

  • RE: Backup files not created

    Jeff Moden (5/16/2015)


    Igor Micev (5/14/2015)


    Hi All,

    Just to share with the sql folks that the problem was resolved by upgrading the instance with CU1 and CU2. Now there is no issue...

  • RE: Backup files not created

    Hi All,

    Just to share with the sql folks that the problem was resolved by upgrading the instance with CU1 and CU2. Now there is no issue with the backup process.

    Thanks...

  • RE: Backup files not created

    Digging ... it's possible the matter that I have added some new files across the databases without restarting the instance. Reading one KB says that it had been a bug...

  • RE: Backup files not created

    Perry Whittle (5/12/2015)


    There is no medianame specified in the query below!

    Igor Micev (5/10/2015)


    Then i run the Command in ssms

    BACKUP DATABASE [F1SB] TO DISK = N'F:\SqlBackup2014\<server>\F1SB\FULL\IGS-DB01_F1SB_FULL_20150510_214455.bak' WITH NO_CHECKSUM, COMPRESSION, ENCRYPTION (ALGORITHM...

  • RE: Backup files not created

    Perry Whittle (5/11/2015)


    have you re run the backup command specifying a medianame?

    Yes, actually all the time I'm specifying it. I even change the drives where I'm trying to backup on....

  • RE: Backup files not created

    This is the read-in dump file with WinDbg, but I cannot get some useful info as I'm not good enough for system core. Maybe someone could say something?

  • RE: Backup files not created

    Perry Whittle (5/11/2015)


    Igor Micev (5/11/2015)


    Grant, it's not a permission issue. It's a windows account with sysadmin privileges.

    It's still possible to revoke permission to a windows admin, the advantage that being...

  • RE: Backup files not created

    Grant Fritchey (5/11/2015)


    Durations suggest that the other backup is failing same as the native backup. It sure looks like a permissions issue. Running it as yourself is going to be...

  • RE: Table Without PK

    GilaMonster (5/8/2015)


    Primary key != clustered index.

    A table can be a heap and have a primary key

    A table may have a clustered index...

  • RE: Case statement in update not working correctly.

    duncanburtenshaw (5/8/2015)


    Igor Micev (5/8/2015)


    Try this:

    UPDATE [temp]

    SET Abstract_area = tmp.DataSet

    FROM #TEMP1 [temp]

    INNER JOIN ( SELECT...

  • RE: Case statement in update not working correctly.

    Try this:

    UPDATE [temp]

    SET Abstract_area = tmp.DataSet

    FROM #TEMP1 [temp]

    INNER JOIN ( SELECT T.* ,

    ...

Viewing 15 posts - 316 through 330 (of 1,170 total)