Forum Replies Created

Viewing 15 posts - 1 through 15 (of 17 total)

  • RE: How To Mess Up An Interview

    I'm glad Sean posted already all the things that I wanted to say.  I've just read the article and it was obvious his stuff is from the real world, not...

  • RE: Stored Procedure Naming Conventions

    We use Mark Sandy's approach as well.  Many of our stored procs deal with one table, and so the Module_Table_Action has worked EXTREMELY well.  If you want to see which...

  • RE: SSIS - Code Reuse and Complex Control Flows

    It IS a very good article and a long time in coming.  We've been able to stretch the DTS considerably with setting global variables.  Never did get looping figured out...

  • RE: Oracle ODBC in Windows Server 2003

    Yes, I am logged in using the same name/password.  I tried to eliminate as many variables as possible.

  • RE: You Want To Do What, with MY Database?

    I like the idea of it, and always love learning about new stored procedures, but chances are good I'd find a different way of getting to the output.

  • RE: The Case for GUIDs

    I share mom's concern.  That's why I thought using the Numeric as an increment, and then using a decimal (say .001) and starting out with the lower end of the...

  • RE: The Case for GUIDs

    I don't see an issue with using a BigInt, or any other number, maybe even using an increment smaller than 1 for a Float, for an even longer life span. ...

  • RE: DTS failing as a job

    I was using SA to run the jobs, or sometimes run the job under my login.  The DTS runs fine when I execute it from Enterprise Manager.

  • RE: DTS failing as a job

    We're using windows authentication on all server connections.  Must I use a SQL Server authentication?

  • RE: Indexes: An Overview and Maintenance for Performance

    I very much enjoyed the article and it provided a lot of useful information.  I have a stored procedure called RefreshDatabase that runs various maintenance scripts. I've included your reindexing...

  • RE: DTS using LastModified date

    The only catch on that is that WhateverTableName is on a different connection.  TableName is in Oracle and WhateverTableName is in SQL Server.

     

  • RE: Lookup Table Madness

     

    I've used this table structure for lookups, codes, two-field type situation for years.  Its been extremely effective and held under almost every situation.

    CREATE TABLE [dbo].[LookUp] (

     [GroupName] [varchar] (25)  NOT NULL ,

     [EntryId] [int]...

  • RE: Set DTS Global Variable with TSQL Possible?

    I had been using the following style to run the DTS in a job:

    exec master..xp_cmdshell 'dtsrun /S"ServerName" /E /N "DTS Name"'

    and that's been working fine.  Could you give a...

  • RE: SQL 7 return DTSs saved as files

    That did it.  Thank you so much. 

  • RE: Dynamic DTS tasks problem

    I just tried out Grasshopper's Dynamic Properties Task Properties idea and it worked great.  Not intuitive at first but good potential.

    Always something new to learn about DTS.  I put in boatloads...

Viewing 15 posts - 1 through 15 (of 17 total)