Forum Replies Created

Viewing 15 posts - 346 through 360 (of 602 total)

  • RE: Change Pwd inside DTS Package

    This can be accomplished through COM.  If you look at the object model for "DTS.Package2", you will find that you can programmatically open, modify, and save packages.

    You should be able...

  • RE: Automating the saving of DTS packages to .BAS format

    Carlos,

    If you are able to get the /F SomePackageName.bas and /!X options working, you will create a COM-Object structured file with a .bas extension.  This is probably not what you want.

    I think...

  • RE: Install of SQL server on Windows XP operating System

    You can install the Developer edition, which is mostly like the Enterprise edition.

    http://www.microsoft.com/sql/prodinfo/previousversions/system-requirements.mspx

    jg

     

  • RE: Passing a where clause to a stored proc as a variable

    This error, somewhat erroneously reported as a "Syntax error":

     

    ....Server: Msg 245, Level 16, State 1, Procedure sp_load_workspace_for_publishing, Line 41

    Syntax error converting the varchar value 'DECLARE docinsert CURSOR FAST_FORWARD for........

     

    Is what...

  • RE: inner join same table twice

    Educate him further, and he will open a chain of fried fish restaurants.

     

  • RE: INSERT INTO from linked server

    That sounds quite strange, indeed.  It would be nice if you could post up the before and after versions of the trigger so we could become more educated as to...

  • RE: Adding new disk drive for SQL server.

    If you set up the Physical Disk resource for your new drive a dependency of the SQL Server resource in the resource group, EM should present the drives as part of the...

  • RE: Query/View Question

    Darn system ate my post the first time through.

    You don't mention any output from table3 so I'm leaving it out.  I used some different column names, so you'll have to...

  • RE: Question of the Day for 19 Apr 2006

    Sort of a wrong question.  The trigger is created ON the database, but FOR specified events. 

  • RE: help sytax distinct union into

    You need to remove the INTO from the second select in the UNION.

    You can:

    select into newtable

    Select columns from table1 ....

    union

    select select columns from table2

    jg

  • RE: Truncating Date

    Add this to the script for comparing the perfomance of method #4:

    convert(datetime,convert(int,GetDate()-.5))

     

    set @loop = 1

    set @dStart = getdate()

    --uses int conversion

    while @loop <@lMax

    begin

     set @d= convert(datetime,convert(int,GetDate()-.5))

     set @loop = @loop + 1

    end

    select datediff(ms,...

  • RE: Recurring index problem

    I've seen this type of problem before, where a DBCC check reported errors that didn't really exist.

    We eventually traced the problem to firmware on our SAN (MSA1000), which required an...

  • RE: The Database Debate

    "Usually a week later is when you experience corruption or a server crash. "

    Don't forget.... Murphy's Law is not included with Oracle.  You have to pay extra.

    heh

    jg

     

     

  • RE: how to get my database.mdf files to show most recent update

    Also, the timestamp changes when file growth happens.  So, you could shrink the database file, then insert enough data so that the file grows.  That will update the timestamp on...

  • RE: Best Practices for Database Design

    Whaddya mean hard to understand?

    IVC10100 = un-posted invoice header.

    IVC10101 = un-posted invoice detail.

    IVC30101 = posted invoice header.

    IVC30102 = posted invoice detail.

    SY00500 = posted invoice batch header.

    etc....

    How is that hard to...

Viewing 15 posts - 346 through 360 (of 602 total)