Forum Replies Created

Viewing 15 posts - 721 through 735 (of 1,062 total)

  • RE: The IT Career

    I agreed with Jasmine, programming will not faded away.  If the computer can do anything, then it does not even need Captain Kirk, actually it becomes the 'TERMINATOR'. 

  • RE: The IT Career

    I do not particularly like IT.  I chose to major in IT in college because my parents thought it was easy to find a job.

    I can do a good job...

  • RE: Ten Ways To Lose Your DBA Job

    Besides technical skills, I think DBA should have people skills too.  I saw one DBA got fired because he thought he had the best skill set, he was arrogant and...

  • RE: Tracking Item Costs in an FMCG environment

    I have a question about the item cost, even it changes daily, don't you need to keep a history of it, otherwise how do the users know what happen?

  • RE: Database design

    I am not sure if this is what you are looking for.

     

                                        Tbl_HAART

  • RE: Comma Separated values from the DB

    DECLARE @Location VARCHAR(2000)

    SELECT @Location = @Location + dbo.LOCALITY.LOCALITY + ','

    FROM dbo.LOCALITY

     INNER JOIN  dbo.BranchLocality

      ON dbo.BranchLocality.LOCALITY_ID = dbo.LOCALITY.ID

    where dbo.BranchLocality.BRANCH_ID = 34

    SET @Location = SUBSTRING(@Location, 1, LEN(@Location) - 1)

    SELECT @Location

    @Location...

  • RE: Database design

    Yes, I don't know what happened.

  • RE: Database design

     

    Status = 'Change' or 'Switch'

  • RE: Weirdest interview question?

    No one ever asked me weird question but I thought that your manager was very smart.  She was not only hiring someone with the right skill but also looking for...

  • RE: What can we do to make IT better?

    Jasmine,  congradulations on your new company.  Before you start all kind of perks, make sure you hire the right people with good technical and communication skills and make sure they can...

  • RE: Training Class for SQL Server 2005 DBA

    administration, clustering, partitioning, anything that DBA does

    For SQL Server 2000, I am an application DBA, the only thing I don't know how to do is clustering,  nt server administration, calcuate...

  • RE: What can we do to make IT better?

    Jasmine, somehow I have the same feeling about people.  I also work for IT about 20 years.  When I started working, people and company had different mentality and attitude, they...

  • RE: Automate Suggestion

    The bcp call is in dynamic sql of part of the codes.

    SET @SQL1 = 'bcp TempClientTable IN  ' + @TextFileName + ' -t","  -T'

    EXEC(@SQL1)

    I was thinking about using format file but...

  • RE: Need help with ''''Balance Forward'''' cursor

    To find the missing month and roll up the budget from previous month.

    I did not test this so I did not know if it would work.

    SELECT a.dept, a.budgetobject, a.Fiscal_key, b.fiscalmonth,

             ...

  • RE: Need help with ''''Balance Forward'''' cursor

    First I think you are making things too complicated.  Also if there is no activity in Month 06, then you need to add a record for Month 6 from month...

Viewing 15 posts - 721 through 735 (of 1,062 total)