Viewing 15 posts - 766 through 780 (of 1,062 total)
Do you run all the DTS packages in a job? If so, use parameter and dynamic properties and when you move DTS package from server to server, you don't need...
March 20, 2007 at 8:12 am
I used dynamic task and it populated the subject line fine.
March 19, 2007 at 3:28 pm
Don't use Cognos. It sucks.
Don't use Hyperion. Oracle just bought it, you don't know what would happen to this product.
March 19, 2007 at 3:21 pm
I used to work for a bank and the unit was student loan processing. The bank did asked the employees to do a lot of community services at working hours...
March 16, 2007 at 12:16 pm
the select statement, you had a '.' instead of ' at the end.
select 'Unmatched results as of (' + convert(varchar(30), getdate()) + ')'
March 16, 2007 at 9:11 am
I am not trying to defend Microsoft. I used to work for a software development company, when the company announced the software released date, and you knew it was not ready, you...
March 13, 2007 at 11:59 am
I am asking which position in greater demand, so you are telling me more people looking for DBA than developers.
March 12, 2007 at 1:38 pm
That is what I did using xp_cmdshell
EXEC master..xp_cmdshell 'DTSRun /S "ServerName" /E /N "PackageName"
/W "0" /A ReportName:8="ReportName" '
March 12, 2007 at 12:33 pm
Many IT positions have to be on-call too including the DBA. (Although in my last company, when I called the on-call DBA, no one ever answered my call.)
I was on-call...
March 12, 2007 at 12:24 pm
You have to deallocate the cursor after you close the cursor.
Removes a cursor reference. When the last cursor reference is deallocated, the data structures comprising the cursor are released by...
March 12, 2007 at 12:09 pm
CREATE TABLE #Temp (Field1 NVARCHAR(10))
INSERT INTO #Temp (Field1) SELECT '20'
SELECT '1'
UNION
SELECT '10'
UNION
SELECT '45'
UNION
SELECT '100'
UNION
SELECT '210'
UNION
SELECT 'abc'
UNION
SELECT '20'
DECLARE @LEN INT
SELECT @LEN=MAX(LEN(Field1)) FROM #Temp
SELECT Field1...
March 12, 2007 at 11:59 am
1. Depending on which company you work for, not all the IT guys get highest powered machine. My PC at home has more power...
March 9, 2007 at 10:45 am
I put out a thread about 7 down sides of IT (same article), not many people responded.
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=61&messageid=345848
March 9, 2007 at 9:47 am
I had the same problem and I could figure it out. I am glad I saw your post and now mine is working.
But I don't understand why I need to...
March 7, 2007 at 12:39 pm
Since my son is already in high school, so I don't get much interruption. When he comes home from school, the first thing he does is turn on his...
March 1, 2007 at 8:08 am
Viewing 15 posts - 766 through 780 (of 1,062 total)