Forum Replies Created

Viewing 15 posts - 7,771 through 7,785 (of 49,571 total)

  • RE: CPU speed, cache size, latency of caches

    I'll second the recommendation to read Glenn's stuff.

    Processor caches are there to reduce the amount of times that a CPU is spinning idle waiting for data from memory. Small caches...

  • RE: How to perform mathematical formula without using case.

    shahi.alokchandra (9/17/2014)


    Actually i am having more then 100000 rows in table and if i use functions then my index might not be called.,that why want to avoid cases and functions.

    You...

  • RE: Backup is corrupted or not?

    Try to restore it and see if the restore fails.

    Restore HeaderOnly only looks at the header, so only if the header is damaged will it give any indication. Restore VerifyOnly...

  • RE: Can't find object from page ID

    I'd suggest you run a full CheckDB. Also review the success/failure of your regular CheckDB jobs, see when they started failing.

  • RE: Database '' is not valid to be included in the maintenance plan.

    monrroym (9/17/2014)


    Which msdb table holds the specific list of databases to be backed up for the 'backup database task'?

    None. Maint plans are SSIS packages. Follow the advice above about...

  • RE: issue with EXEC sp_executesql

    You have created the temp table before running that insert statement?

    Insert doesn't create the destination table....

  • RE: Are the posted questions getting worse?

    andrew gothard (9/17/2014)


    It's a bit wasteful on RAM, holding all your hot index pages twice, as well as any you're not using in RAM anyway. Puzzled as to how...

  • RE: issue with EXEC sp_executesql

    INSERT INTO #DestinationTable

    EXEC sp_executesql ...

  • RE: DBCC checkdb failed on VLDB

    enriquemallon (9/17/2014)


    First problem is that it appears that the master database has either been moved, or deleted, or the folder has had all rights removed from the SQL Server's account.

    If...

  • RE: DBCC CHECKDB

    Bear in mind that in your case the pages were zeroed out (overwritten with zeroes), so unless a tool is capable of undoing that (which last I heard required a...

  • RE: How to perform mathematical formula without using case.

    What's wrong with CASE? Yes, you can, but it becomes significantly less readable than the equivalent using CASE.

  • RE: Removing database owner

    zedtec (9/16/2014)


    Ok if the database owner is a valid AD user and is deleted from AD will there be any restrictions in this scenario?

    That's the scenario I described...

  • RE: Add TempDB data files

    jralston88 (9/16/2014)


    We also had discussions about where to place the data files, each on separate phyical drives or just one with separate directories. Right now with one, we've had...

  • RE: Ola Hallengren Index Optimize - Log Growth

    That's about right, maybe on the low side. In full recovery index rebuilds are size-of-data operations, so log usage equal or greater than the size of the index.

  • RE: Add TempDB data files

    Let's start with 'why'?

    There is no truth to the myth that only one core can write to a particular file. All threads, no matter where they are running can read/write...

Viewing 15 posts - 7,771 through 7,785 (of 49,571 total)