Forum Replies Created

Viewing 15 posts - 7,066 through 7,080 (of 9,643 total)

  • RE: Difference between view an join?

    From BOL:

    A view is a virtual table whose contents are defined by a query. Like a real table, a view consists of a set of named columns and rows of...

  • RE: Before Trigger

    When you just use FOR you are actually creating an AFTER trigger. What you want is an INSTEAD OF trigger. The issue with INSTEAD OF triggers is that...

  • RE: text data extraction with a sql query

    This should work:

    [font="Courier New"]DECLARE @AMGR_Notes_Tbl TABLE (Data_Machine_Id INT, Sequence_Number INT, Owner_Id VARCHAR(10),

                                   Client_Id VARCHAR(10), Contact_Number VARCHAR(15),

                                   TYPE CHAR(1), Private INT, DateCol smalldatetime,

                                   TimeCol smalldatetime, NewRecord INT, Owned_By_Id VARCHAR(10),

                                  ...

  • RE: help in modifying script

    bang725 (10/28/2008)


    error on line 6

    object doesn't support property called "Folders"

    Did you attempt to determine what might be the correct property to find folders within a folder? Maybe .Subfolders? ...

  • RE: text data extraction with a sql query

    jacopasto (10/28/2008)


    I ad the 'DateCol' at the output but it doesn'work (name of column non valid 'DateCol').

    Sounds like you have spelled the column name wrong, check that.

    Also, i cannot retrieve...

  • RE: Insert into one table from another where the record doesn't already exist

    This is the general way to do this. Because you did not supply the schemas or clearly define what column in ptAppointments represents ScheduleID I used generic language. ...

  • RE: help in modifying script

    Could you be more specific? Are there any errors? Is is not deleting files?

  • RE: text data extraction with a sql query

    That would be basically the same query I gave you with datecol added to the output and a where clause.

  • RE: Error Handling in SSIS

    Yes there is C# Express and VB Express 2008 available.

  • RE: Help with SELECT and COUNT query

    ISNULL (R.RateCount,'0') as R.RateCount should be ISNULL (R.RateCount, 0) as RateCount

  • RE: Input of file

    Check out this article[/url] and the associated thread as there is custom component attached to the thread.

  • RE: help in modifying script

    My VBScript skills are a little weak, but something like this should work:

    Dim fso,fol,f

    set fso = CreateObject("Scripting.FileSystemObject")

    Set fol = fso.GetFolder("C:\Test\")

    For each f in fol.Folders

    ...

  • RE: Error Handling in SSIS

    Nope I did it in VS 2008, but I thought I had the compatability mode in 2005.

    Sorry

  • RE: text data extraction with a sql query

    If you are guaranteed a consistent order in the data this works:

    Declare @AMGR_Notes_Tbl table (textcol varchar(max))

    Insert Into @AMGR_Notes_Tbl

    Select

    'Spoke with Joe Adams. i told him ti schedule a demo meeting.'+

    'Phone Call:...

  • RE: Reporting Servoces 2005 - Carriage returns are not getting reflected in the Reports

    Is there any delimiter you can use?

Viewing 15 posts - 7,066 through 7,080 (of 9,643 total)