Viewing 15 posts - 901 through 915 (of 1,062 total)
There are many message boards controlling by some companies. They constantly monitor what people write on the message board. One time I went to one message board, I remembered I...
November 17, 2006 at 8:27 am
Managing people is very difficult. Each person has his/her own opinion. In one company my team had 12 people, we argued about everything in every project and the manager did...
November 16, 2006 at 7:42 am
Learning the database means learning the business. If you don't understand the business, it is hard to design a good database. Also the management has to understand designing the database...
November 15, 2006 at 7:17 am
Congradulation! I am sad but I am also happy for you guys.
I just hope Red Gate will not charge a subscription fee and it...
November 14, 2006 at 8:42 am
I am happy for you guys. Congradulations. It is a gread SQL Server website and I got so much out of it.
On the other hand, I feel sad because Red...
November 14, 2006 at 6:42 am
You can buy any software or you can even create your own data dictationary, but it is labor intensive to fill out the 'Description' of each field in each table....
November 10, 2006 at 12:51 pm
In one of your thread, most DBAs are talking about telecommute and working at home. So the DBA car is just for show off?
(Just a joke - don't get...
November 10, 2006 at 9:22 am
I did this once - except it was the other way, I had to load data from text file into database.
I create a DTS package to load 1 file to...
November 10, 2006 at 9:09 am
need to get data out first from TXT file before i try to put into Staging table.
I don't understand what you meant by get the data out before putting them...
November 9, 2006 at 6:07 am
Actually I would write a procedure instead of DTS package.
Step 1 - truncate table Staging Table
Step 2 - EXEC MASTER..xp_cmdshell 'bcp stagingtable IN text file...'
Step 3 - check if staging...
November 8, 2006 at 2:49 pm
SELECT t.pk_ticket, t.company, t.createdate
FROM hd_ticket t
INNER JOIN (SELECT fk.ticket, MIN (createdate) firstCreateDate
FROM hd_communicationlist
GROUP BY fk.ticket) c
ON t.pk_ticket = c.ticket
WHERE t.pk_ticket = '34950' AND DATEADD(hour, 24, c.firstCreateDate) >=...
November 3, 2006 at 12:25 pm
If you want to know which step
You can put down
Msgbox(stp.Description)
November 3, 2006 at 12:15 pm
try this.
Function Main()
dim pkg, stp
Main = DTSTaskExecResult_Success
set pkg = DTSGlobalVariables.Parent
For each stp in pkg.Steps
If stp.ExecutionResult = DTSStepExecResult_Failure
THEN
Msgbox ("Error")
Main = DTSTaskExecResult_Failure
End If
Exit For
Next
End Function
November 3, 2006 at 12:08 pm
Viewing 15 posts - 901 through 915 (of 1,062 total)