Forum Replies Created

Viewing 15 posts - 511 through 525 (of 1,062 total)

  • RE: DTS Global Variables for Tables

    Can you show me the query?

    Anyway I have created dynamic Sql over 8000 characters.

    DECLARE @SQL1 VARCHAR(8000),

    ...

  • RE: Star Schema Design for Headcount with Goals

    So I assume you have a Date dimension table, Company table, what about gender, ethnicity, marital status, does each one have its own dimension table or all these...

  • RE: Jobs Status Not refreshing

    You can use sp_help_job to find out the job status.

    EXEC msdb..sp_help_job

    @job_name = 'Job'

    ,@job_aspect = N'job'

    This will come back with a result set, the...

  • RE: difference between *= and Left outer join

    That certainly gives the developer who uses both Oracle and SQL Server a headache. I have to use both Oracle and SQL Server in most of my jobs, talking...

  • RE: DTS with Execute Process task not running when scheduled in the agent

    The problem is when you execute notepad.exe using Execute task and runs on a job. You need to put the directory, otherwise, it does not know where to find...

  • RE: Trigger causing locks on table

    My previous obnoxious manger insisted to use trigger to update the table, it created a big deadlock in the system because it locked the table. If your inserted table...

  • RE: FactTable and Dimension table Identification

    What do you want to know?

    Dimension table has the lookup field of the system eg, customer, product....

    Fact table has the measure (number) and has the dimensions in it. ...

  • RE: difference between *= and Left outer join

    Oracle used *= but now it always uses outer join. I like to use ANSI standard better, it makes more clear. The Oracle developers still use *= but...

  • RE: Drill down Lookups

    Jez, that is a good idea. If you put a surrogate key in the table, then it will eliminate the possibility if two parents have the same child.

    CREATE TABLE...

  • RE: How come no one post any job?

    What about Rochester, NY? Can I work at home? I am 3 hours away from Toronto.

    Probably I can make a trip once or twice a month to...

  • RE: Load text files in a directory into a table from SQL 2000

    I used to load multiple text files with different format into different tables in a database.

    I created a table called TextFileInfo with TextfileName, Path directory, formatfilename with path directory,

    table name.

    I...

  • RE: Drill down Lookups

    When I designed the drilled down table, it contains level1 info, then level 2....

    In your case

    Table Material_DrillDown

    Material VARCHAR

    Item VARCHAR

    Table Item_DrillDown

    Material VARCHAR

    Item VARCHAR

    Item_Info1 VARCHAR

    Item_Info2 VARCHAR

    Material = Paper, Cardboard, Vinyl

    Item = for...

  • RE: Schema Change Deployment

    I used to work for a software company and I used Installshield to write install script. My DBA used Perl to write install script. No matter what, your...

  • RE: Schema Change Deployment

    You mean when you have a deployment ready, you can start a job and update all the clients?

    Then why don't you put the clients in a table, then write a...

  • RE: Schema Change Deployment

    That was exactly what I wanted to say, if you use 'ALTER TABLE ADD COLUMN....', if the table was big, it would take a long time because during the alter...

Viewing 15 posts - 511 through 525 (of 1,062 total)