Forum Replies Created

Viewing 15 posts - 24,931 through 24,945 (of 26,490 total)

  • RE: best way to detect locking

    Jack,

    I tried creating an Alert, but it doesn't seem to fire. Is there something else that needs to be done that I may be missing? I was sure...

  • RE: Reporting Services Licensing question

    Well, that last bit of info may be a bit old, but it was valid at my last employer. The reports were run on an automated schedule then dumped...

  • RE: Reporting Services Licensing question

    I also think it depends on the type of reports created as well. If the reports used by users are static, you may not need to count those users....

  • RE: Bachelors degree - Who has one, or even more education?

    WILLIAM MITCHELL (4/2/2008)


    A rule of thumb when writing your resume is to include only the last 10 years of work experience. I would expect that a degree that is more...

  • RE: Reporting Services Licensing question

    I'm not with Microsoft eithr, but based on my multiple readings of the licensing for SQL Server 2005, if you install Reporting Services on another server (other than the one...

  • RE: update my count

    terrence_daniels (4/1/2008)


    How come I can not use update instead of create. I do not wish to create a new table, I just want to update the column?

    The "create" in my...

  • RE: update my count

    Use this as a basis for writing your update query:

    create table #MyTable(

    RowId int,

    RowDataCol1 char(10)

    )

    go

    insert into #MyTable (RowId, RowDataCol1)

    select 1, 'Data 1' union

    select...

  • RE: update my count

    How are new rows added to the table, and when do they get numbered?

  • RE: How to avoid UNION and solve with only Joins?

    If you could provide the DDL for the tables (at least the key fields plus any non key fields used in the joins), some sample data (based on the DDL...

  • RE: How to avoid UNION and solve with only Joins?

    Sql Student (4/1/2008)


    I got 2 tables where there are matching records.

    But i need to pull out data from table 2 that is not present in table 1 along with the...

  • RE: update my count

    Are the row numbers the only way to identify the rows? Does the table have any other means to identify the order the data was entered?

    SAMPLE DATA, TABLE DDL,...

  • RE: why move indexes

    If DC means Domain Controllers, my advice is to get the databases of them and onto their own dedicated server(s).

    😎

  • RE: update my count

    Okay, I guess we are missing the point, so show us. Please provide the DDL for the table, sample data (in the form of an insert statement with union...

  • RE: why move indexes

    I have to agree with Grant and Steve. In our DW project, I have seperated the system tables ([PRIMARY]) from the data [DATA], default), non-clustered indexes ([Indexes]), and indexed...

  • RE: update my count

    Are you renumbering the rows after every insert, or are you looking for a means to update the row_number field as records are inserted? Can more than one row...

Viewing 15 posts - 24,931 through 24,945 (of 26,490 total)