Forum Replies Created

Viewing 15 posts - 721 through 735 (of 1,124 total)

  • RE: Fetch a Stored Proedure using osql

    Use the procedure "sp_helptext "

  • RE: needed data extraction Logic

    Well, reading excel data from within T-SQL requires many security related permissions such as enabling OPENROWSET configurations, read access to file etc..

    So, my suggestion is to first import the excel...

  • RE: fragment a table

    Look for Partitioning Tables in Books Online....

  • RE: cursors vs temp table for a SP executed by SSIS

    Well, I could do that....

    But first you have to help me by providing enough information about the objects (in form of DDL), the sample data (i.e. INSERTS statements) and the...

  • RE: SQL Server 2005 SP 3

    Lynn Pettis (1/6/2009)


    This may be a dumb question, how do I get to the files in the exe file? I've never had to do that before.

    Winrar can do....

  • RE: SQL Server 2005 SP 3

    This looks promising. I just need to figure out where to find the msp files and give that a try.

    I'm wondering if there may be a permissions issue that...

  • RE: Parse string based on value in another table

    I'm assuming that the two tables are linked by some common column, as you have not provided enough information, here is the query which will does exactly what you have...

  • RE: Linked servers as a parameter

    This is just another case of using "Dynamic SQL". You can't directly use a variable in place of object definitions...

    You have to do something like....

    --== Declare the link server...

  • RE: SSIS Package

    You can use the "Data Flow Task" in SSIS and in that flow you need to set the source & destination connections & the mappings between them.

  • RE: XP_SENDMAIL in SSIS

    You can use the inbuilt "Send Mail Task" or embed the procedure call in an "Execute SQL Task" in SSIS.

  • RE: Begginer Question

    Firstly, from where do I get the MEASURE_HOUR value? Does the DATE_PROCESS column will have time portions too?

    Without much information, the sample data and the required outputs,...

  • RE: cursors vs temp table for a SP executed by SSIS

    Ok, here is the list of steps you have to do...

    1. Create a variable "objQueries" (as Object data type, to store the resultset of SQL Task 1)

    2. Create another variable...

  • RE: cursors vs temp table for a SP executed by SSIS

    Actually, you don't have to use any of them...

    This can be easily done by using For Each ADO enumerator.

    1. Execute SQL Task 1 (to get the list of queries from...

  • RE: SQL Server 2005 SP 3

    Hi Lynn,

    I too had the same problem while installing SP2 on Developer Edition (64bit). I've fixed

    that by manually copying the installer msps to the windows installer directories.

    In your case,...

  • RE: To find the difference between two datetimes

    Or you can try using DateDiff("h", date1, date2)...

Viewing 15 posts - 721 through 735 (of 1,124 total)