Forum Replies Created

Viewing 9 posts - 91 through 100 (of 100 total)

  • RE: Index Rebuild - How much and How Long?

    i have the same problem. but i'm concerned about something else. I have an table with 2 indexes, one clustered and one non-clustered. I have a lot of inserts -...

    In Theory, theory and practice are the same...In practice, they are not.
  • RE: reads on inserts

    i have the same problem. but i'm concerned about something else. I have an table with 2 indexes, one clustered and one non-clustered. I have a lot of inserts -...

    In Theory, theory and practice are the same...In practice, they are not.
  • RE: Identifying repeating values in a string

    Yeah, I know. I have code to replace cursors with table variables, but this solution is assumed to be only for building or test environment. On product environment i have no cursors.

    In Theory, theory and practice are the same...In practice, they are not.
  • RE: Identifying repeating values in a string

    Hi there,

    I think this solution will satisfy you:

    First, I made a table with your records -

    /*-- -Object: table [dbo].[tHouses]    -------*/

    CREATE TABLE [dbo].[tHouses] (

     [ID] [smallint] IDENTITY (1,1) NOT NULL,

     [Street] [nvarchar](50)...

    In Theory, theory and practice are the same...In practice, they are not.
  • RE: Loading a 24x7 Data Warehouse

    how do you know/verify that the connection(s) you are killing is "cached" ?

     
    it's simple, I am killing the "cached" connections from third party application administration, e.g. - when a...
    In Theory, theory and practice are the same...In practice, they are not.
  • RE: Loading a 24x7 Data Warehouse

    In fact, I am killing cache database connections made by other third party applications than the master application. So it is ok and my customer is happy 'cause the sql...

    In Theory, theory and practice are the same...In practice, they are not.
  • RE: Loading a 24x7 Data Warehouse

    Good job, Leo!

    Finnaly, I found an stored procedure which kills the db connections, KILL_DB_CONNECTIONS. But, not in the end, your logical schema was one of mine used in production...

    In Theory, theory and practice are the same...In practice, they are not.
  • RE: how to find out duplicate entries?

    another solution:

     

    SELECT     field, COUNT(*) AS cnt

    FROM         dbo.table

    GROUP BY field

    HAVING      (COUNT(*) > 1)

     

    this will displays the field duplicated and how many is duplicated.

    In Theory, theory and practice are the same...In practice, they are not.
  • RE: Password Field

    Thank you very much Lowell!

    It works fine!

    In Theory, theory and practice are the same...In practice, they are not.

Viewing 9 posts - 91 through 100 (of 100 total)