Forum Replies Created

Viewing 15 posts - 1,141 through 1,155 (of 1,241 total)

  • RE: Alternate to Joins

    Many joins would indicate to me proper 3rd form normalisation. You may want to transform the data using dimensional architecture to avoid these. But with proper indexing, many joins are...

    ----------------------------------------------------

  • RE: SSRS Reports deploy in Reporting Server Manager

    Something may have changed on the network in that you may be required to use the full qualified domain name.

    Example like// from : myWarehouseServer to: mywarehouseServer.domain.company.com/instance.

    It doesn't hurt to...

    ----------------------------------------------------

  • RE: MODEL transaction log growing

    Profiler will help you. Look at the Objects and Performance event classes.

    ----------------------------------------------------

  • RE: Comparing two rows

    Hi, The way I read it you are looking for not only duplicates but the original row the duplicates duplicated?

    If so try this ( I adjusted your code a tad):

    create...

    ----------------------------------------------------

  • RE: Updating Views

    I've had to correct views I've inherited that used select * and returned many unneeded columns. A quick and dirty way to correct them is to right click a view,...

    ----------------------------------------------------

  • RE: Dealing with Supervision

    The micro-managers I've had are not technical people and have MBA's. They are looking for a way to justify their degrees and think the walls will fall down without them....

    ----------------------------------------------------

  • RE: NOLOCK Hint Corrupts Results from SELECT

    It may not be a bad idea to have the server and other workstations check apply updates automatically to Windows and applications.

    ----------------------------------------------------

  • RE: Report Server help

    Log shipping is mainly used to have a backup server in case of hardware failure on the production server. This should already be in place on production system. If your...

    ----------------------------------------------------

  • RE: Identity column reseed cause problem with other database

    I dont know this to be common place. In fact I know not to expect it. With that being said it may be possible (just to prevent this scenario...

    ----------------------------------------------------

  • RE: duplicate rows

    If I understood correctly >

    create table #t1 (productNo tinyint, productname varchar(10),

    Des varchar(50), quantity tinyint)

    Insert into #t1

    select 1, 'borin', '4x-mal', 2 union all

    select 1, 'borin', '5x-cal', 3 union all

    select 2, 'hypoid',...

    ----------------------------------------------------

  • RE: NOLOCK Hint Corrupts Results from SELECT

    Very strange indeed.

    Try..

    dbcc opentran

    To see if you have any open transactions that you may not even be aware of.

    ----------------------------------------------------

  • RE: how to add a column that contains the max value of the group from another column

    A more basic approach, in case you are not familiar with the CTE function ... would look something like

    select market_project, max(dashboard_status_level) max_level

    into #mytempTable

    from mainTable

    group by market_project

    /* this creates a temporary...

    ----------------------------------------------------

  • RE: Trying to pull from many tables with similar names using one for each loop container

    Thanks for the reply Craig. I'll play around with that and report back.

    ----------------------------------------------------

  • RE: Trying to pull from many tables with similar names using one for each loop container

    Hi and thank you for the reply. Yes they all have the same schema.

    ----------------------------------------------------

  • RE: What's the best way to pass parameter into a dynamic sql in my case? Thanks.

    Ok thanks for the note, I missed that. I guess haste does make waste.

    ----------------------------------------------------

Viewing 15 posts - 1,141 through 1,155 (of 1,241 total)