Forum Replies Created

Viewing 15 posts - 1,126 through 1,140 (of 1,231 total)

  • RE: help needed for sql query

    I think we need to know what the two date columns represent, so that we do not guess. It looks to me the update column is like a record time...

  • RE: SQL Agent Job Sudden Failure, Login failed for user NT AUTHORITY\SYSTEM.

    Could it be there was a momentary loss of connectivity to the domain controller and the credentials passed could not be verified? I don't recall if I've encountered this particular...

  • RE: daily weekly monthly calculate sum

    Also we would like to know if you would be running the report once a day, week , month? It seems to me that at any point you execute...

  • RE: Select Distinct last records

    Depending on your business requirements you may instead want to apply the above logic using a time stamp column, which you would need to add.

  • RE: How to update SSIS package on sql server

    we do not have access to msdb folder

    Do you mean the folder in SSMS when you connect to Integration Services on your server, or some windows folder ?

  • 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',...

Viewing 15 posts - 1,126 through 1,140 (of 1,231 total)