Forum Replies Created

Viewing 9 posts - 31 through 39 (of 39 total)

  • RE: Table/Column Naming Conventions (Opinions Wanted)

    quote:


    As an expert and consultant for Databases and SQL, I always give this standard :

    ....

    CREATE VIEW V_CUSTOMER_CST

    AS

    SELECT CST.PRS_ID AS ...

  • RE: One or More than One Database?

    quote:


    In other words, a table of employees, with employee code, name, department, etc. would be stored in one database. That employee...

  • RE: User-defined Data Type Basics

    quote:


    I hate UDT's, they are hopessly deficient, why?

    a) i cant easily change the "real" type for the udf once bound to N...

  • RE: Passing Parameters to DTS

    quote:


    quote:


    Check out dtsrunui. No more building parameters or jobs for dtsrun by hand. Excellent...

  • RE: Passing Parameters to DTS

    quote:


    Hey Andy,

    What is the syntax for assigning global variables using dtsrun?


    Check out dtsrunui. No...

  • RE: DTS or BCP or ???

    Hello

    If you don't mind sending me the code, I'd like to take a look at your import processing. I have tried different aproaches. At the moment I'm using openquery (through...

  • RE: Hidden Connections

    Just last friday I had a weird problems when migrating DTS packages from development (my workstation) to test environment (customer's site). I used Global variables and Dynamic Properties to set...

  • RE: Front-end for Sql server - What's best?

    quote:


    ADPs????

    Access Data Pages are a big fat ActiveX control in a web page - that type of approach died 3 years ago.

    Also...

  • RE: Dynamic SQL vs. Static SQL Part 2, Code

    In the article you mentioned a 8000 chars limit of @variable for dynamic SQL. You can extend this to several variables like this:

    EXEC (@var1 + @var2 + @var3)

    (see BooksOnline)

    Otherwise, great...

Viewing 9 posts - 31 through 39 (of 39 total)