Forum Replies Created

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

  • RE: custom .net assembly in script task

    nevermind ... http://www.codeguru.com/vb/gen/vb_database/sqlserver/article.php/c11141__1/


    Kindest Regards,

    Seth Washeck

    If nothing in this world satisfies me, perhaps it is because I was made for another world.
    C. S. Lewis

  • RE: deploy express with application

    Thanks a lot. That's great.


    Kindest Regards,

    Seth Washeck

    If nothing in this world satisfies me, perhaps it is because I was made for another world.
    C. S. Lewis

  • RE: deploy express with application

    Nevermind. Here is the response I got from a MS representative.

    "There's still some licensing stuff to be worked out but you will be able to

    put the self-extracting CAB...


    Kindest Regards,

    Seth Washeck

    If nothing in this world satisfies me, perhaps it is because I was made for another world.
    C. S. Lewis

  • RE: Derived Table

    you could also "left join ... on ... where key is null"


    Kindest Regards,

    Seth Washeck

    If nothing in this world satisfies me, perhaps it is because I was made for another world.
    C. S. Lewis

  • RE: Cross-server query in a stored procedure

    cross-server queries are considered heterogenous queries so you have to set ansi_nulls/warnings "on" with the "GO"s

    then you have to create the procedure in QA (because you cant put three seperate...


    Kindest Regards,

    Seth Washeck

    If nothing in this world satisfies me, perhaps it is because I was made for another world.
    C. S. Lewis

  • RE: Execute Process Task With Global Variables as Parameters

    Nevermind ... I found the answer.

    ActiveX

    http://www.sqldts.com/default.aspx?251


    Kindest Regards,

    Seth Washeck

    If nothing in this world satisfies me, perhaps it is because I was made for another world.
    C. S. Lewis

  • RE: delete where not exists

    you could also do a left join

    delete p

    from patient_policies p

    left join vouchers v

    on p.patient_policy_id = v.current_patient_policy_id

    and p.patient_policy_id = v.original_patient_policy_id

    where ((v.current_patient_policy_id is null) and (v.original_patient_policy_id is null))


    Kindest Regards,

    Seth Washeck

    If nothing in this world satisfies me, perhaps it is because I was made for another world.
    C. S. Lewis

  • RE: new to SQL Server 2000

    you can install personal edition (aka Disk 2) on XP.


    Kindest Regards,

    Seth Washeck

    If nothing in this world satisfies me, perhaps it is because I was made for another world.
    C. S. Lewis

  • RE: DTS problem

    File Watcher:

    http://www.databasejournal.com/features/mssql/article.php/3319261

    then union all


    Kindest Regards,

    Seth Washeck

    If nothing in this world satisfies me, perhaps it is because I was made for another world.
    C. S. Lewis

  • RE: trobbels pasting text in a field

    Have you tried a datatype of "text"?


    Kindest Regards,

    Seth Washeck

    If nothing in this world satisfies me, perhaps it is because I was made for another world.
    C. S. Lewis

  • RE: Using a Linked Server to connect to an Excel File

    an alternative could also be to create a "File Watcher" package.

    http://www.databasejournal.com/features/mssql/article.php/10894_3319261_3


    Kindest Regards,

    Seth Washeck

    If nothing in this world satisfies me, perhaps it is because I was made for another world.
    C. S. Lewis

  • RE: This Works in FoxPro?

    when using aggregate functions, you need to have the non-aggregated columns in the "group by" clause


    Kindest Regards,

    Seth Washeck

    If nothing in this world satisfies me, perhaps it is because I was made for another world.
    C. S. Lewis

  • RE: how to create function Replace text in html

    this should get you started

    declare @path varchar (150)

    set @path = 'http://qa.sqlservercentral.com/forums' +

    (select top 1 [image] from [image table] where [criteria is met])

    select @path


    Kindest Regards,

    Seth Washeck

    If nothing in this world satisfies me, perhaps it is because I was made for another world.
    C. S. Lewis

  • RE: Why do they make it difficult

    Based on my (limited) knowledge of replication here are a few answers:

    Publisher: the server that actually has the data

    Distributor: server that makes the data available (we have our publisher...


    Kindest Regards,

    Seth Washeck

    If nothing in this world satisfies me, perhaps it is because I was made for another world.
    C. S. Lewis

  • RE: Interesting site ...

    Incorrect syntax near the keyword 'RIGHT'.


    Kindest Regards,

    Seth Washeck

    If nothing in this world satisfies me, perhaps it is because I was made for another world.
    C. S. Lewis

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