Forum Replies Created

Viewing 15 posts - 7,456 through 7,470 (of 7,614 total)

  • RE: Find records in table that match patterns in different table

    Did you adjust the original query so you're doing an apples-to-apples comparison?

    SELECT *

    FROM #myData md

    CROSS JOIN #patterns p

    WHERE

    md.descr LIKE p.pat

  • RE: Query between month

    Storing this will allow to keep our query sargable for best index usage.

    Is that really necessary?

    Won't SQL treat computations on a declared variable as a constant, so they are still...

  • RE: Query between month

    --edited out, essentially same code, lol.

  • RE: check database integarity takes long

    You should have something in place that checks for disk hardware errors, with immediate notification and fast response.

    And do proper monitoring of the suspect pages table and the SQL error...

  • RE: How many rows is it reasonable to put in SQL Server? (large data question)

    178M rows shouldn't be a problem per se, if you index properly.

    THE biggest factor is getting the correct clustered index.

    Get that right, you should have no issues with that many...

  • RE: How to find candidate keys

    I use identity as a clus key only as a last resort. Usually there's a better business key value that yields much better overall performance.

    On a table I knew...

  • RE: Find special characters

    Why use the CHAR function to convert it back to a character?

    Why not just check for the ASCII value?

  • RE: How to find candidate keys

    I would do a query with:

    SELECT

    COUNT(*) AS [Total],

    COUNT(DISTINCT column_1) AS [Column_1],

    COUNT(DISTINCT column_2) AS [Column_2],

    ...

  • RE: How to find out what is actually in use

    To be safe, I would move everything.

    If/as you feel a particular object is not needed, rename it (or move to a different schema/db, if you prefer). See if any...

  • RE: Unable to shrink an almost empty ndf file

    If you can, for now I'd just move the remaining tables temporarily to another filegroup, completely emptying the original fg, then shrink it. Finally move the remaining tables back...

  • RE: Unable to shrink an almost empty ndf file

    Did you deletes of lots of table data in some cases rather than table drops?

    At any rate, just to be sure, I would run sys.dm_db_index_physical_stats () on remaining tables to...

  • RE: SQL Like Clause

    The setup and maintenance on full-text indexes is not trivial.

    It's not a problem for a full-time DBA, but if you're not a DBA, it can be a tricky thing, especially...

  • RE: SQL Like Clause

    I wouldn't automatically add a leading %. That forces a full scan which is often unnecessary if the requestor knows what the first name starts with.

    Instead, allow the user...

  • RE: Trigger Fails to Work

    You should be able to update all rows at once, like so:

    set ANSI_NULLS ON

    set QUOTED_IDENTIFIER ON

    GO

    ALTER TRIGGER [dbo].[tr_TaxID]

    ON [dbo].[Item]

    after INSERT, UPDATE AS

    UPDATE [dbo].[Item]

    SET

    taxid...

  • RE: sum for for different criteria in one query

    I would just use a CASE statement.

    But you raised a good point I overlooked.

    If you do need only current year's data, I should have added a WHERE clause with a...

Viewing 15 posts - 7,456 through 7,470 (of 7,614 total)