Forum Replies Created

Viewing 15 posts - 766 through 780 (of 1,062 total)

  • RE: Change Server Conntection

    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...

  • RE: DTS, dynamic task error

    I used dynamic task and it populated the subject line fine.

  • RE: Good analysing, reporting end-user tool ??

    Don't use Cognos. It sucks.

    Don't use Hyperion.  Oracle just bought it, you don't know what would happen to this product.

  • RE: Responsibility

    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...

  • RE: DTS, dynamic task error

    the select statement, you had a '.' instead of ' at the end.

    select 'Unmatched results as of (' + convert(varchar(30), getdate()) + ')'

  • RE: Bad Programming

    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...

  • RE: Job Opportunity

    I am asking which position in greater demand, so you are telling me more people looking for DBA than developers.

     

  • RE: Using the /A switch to pass global variables to a dts package

    That is what I did using xp_cmdshell

    EXEC master..xp_cmdshell 'DTSRun /S "ServerName" /E /N "PackageName"

    /W "0"  /A ReportName:8="ReportName" '

  • RE: The 7 Upsides to IT

    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...

  • RE: recursive function - help!

    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...

  • RE: Alpha Numeric Sort Order

    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...

  • RE: The 7 Upsides to IT

    1.        Depending on which company you work for, not all the IT guys get highest powered machine.  My PC at home has more power...

  • RE: The 7 Upsides to IT

    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

  • RE: Frustrating Problem

    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...

  • RE: The Remote Life

    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...

Viewing 15 posts - 766 through 780 (of 1,062 total)