Forum Replies Created

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

  • RE: Using SSIS as an ETL for Oracle

    I am selecting from SQL server, and writing into Oracle. The performance is about 100 to 200 rows per sec. I have tried Oracle OLE db, and MSDAORA both. The...

  • RE: Permissions required to Truncate

    thanks everyone 🙂

    I had posted the question in 2006, and have got three replies in the last two days!! Appreciate your help.

  • RE: Nested sql agent jobs?

    when you say "package" are you referring to SSIS or is there some other package in SQL server?

    thanks!

  • RE: Multiple processes, locking

    The source is an Oracle database. My query is:

    Insert into SQL_Table

    ( columns)

    Select columns from openquery (Linked_server, 'Query_Oracle')

    I ran multiple queries without any partitioning - I ran into deadlocks. I...

  • RE: Where is column description located in a system table

    I tried the procedure sp_addextendedproperty and it does what I need. Thanks Jeff, Matt, RBarry, Noel, and Gsquared.

  • RE: Where is column description located in a system table

    That SQL was helpful and gave me what i was looking for. Thanks to those who put it here. Another question:

    I have column comments as Extended Properties in one database...

  • RE: parse string recursively

    Yeah, exactly what i had in mind. But i need to wait until the weekend to do that.

  • RE: parse string recursively

    Thanks Mark,

    You solution also looks good, will try it out. Thanks

  • RE: parse string recursively

    Sure Jeff...The recursive parsing function followed by the function to count and summarise the entire table based on input dates.

    CREATE FUNCTION dbo.MPM_PARSE_ERROR(@error_number VARCHAR(100))

    RETURNS @ERROR_TABLE TABLE (ERROR VARCHAR(5))

    AS

    BEGIN

    /*------------------------------------------------------------

    Name   : MPM_PARSE_ERROR

    Input  :...

  • RE: parse string recursively

    Thanks Jeff, Serqiy. I really appreciate the detailed reply that Jeff gave. Also, I realise that delimited data is good in files, not in database tables. I have learnt it...

  • RE: Conditional Flow in DTS

    This is excellent!!

    I had attempted using that option but could never figure out how it should be used. This will really help me. Thanks!

  • RE: how many columns is ''''too many'''' ?

    How is the table being used? By what application?

    If you are generating a report from that table, you do not want the report to spend crucial minutes in making joins...

  • RE: Refresh Table

    As i understand your problem, you execute the Stored proc, tables are updated, the results have to be seen on a website browser.

    If you do not want to refresh the...

  • RE: DTS Weird happenings

    I have faced the same problem in DDQ a couple of times. The column names and parameters get mismatched on their own. DTS is haunted

  • RE: String and Numeric data types

    Thanks Mike,

    Does that mean I can not "turn off" scientific notation at the server level? And please let me know what exactly you mean by "regular expression match". The input...

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