Viewing 15 posts - 721 through 735 (of 1,062 total)
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'.
April 13, 2007 at 7:50 pm
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...
April 13, 2007 at 11:20 am
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...
April 13, 2007 at 10:16 am
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?
April 12, 2007 at 8:29 am
I am not sure if this is what you are looking for.
Tbl_HAART
April 12, 2007 at 8:21 am
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...
April 12, 2007 at 7:51 am
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...
April 11, 2007 at 8:09 am
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...
April 11, 2007 at 7:56 am
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...
April 10, 2007 at 2:48 pm
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...
April 10, 2007 at 11:31 am
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...
April 10, 2007 at 6:35 am
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,
...
April 9, 2007 at 12:56 pm
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...
April 9, 2007 at 12:41 pm
Viewing 15 posts - 721 through 735 (of 1,062 total)