Forum Replies Created

Viewing 15 posts - 61 through 75 (of 362 total)

  • RE: Insert into multiple tables

    [font="Verdana"]It seems that the relation between Table: tblProduct and Table: tblProductSizeWidthColor is Parent - Child and before inserting records into tblProduct you are verifying whether the records is not...

  • RE: Queries with Aggregate Functions

    [font="Verdana"]

    Toreador (5/27/2009)


    Mahesh Bote (5/27/2009)


    [font="Verdana"]Answer should be 1, 2 and 4 as well as 2nd and 4th query are same.

    Mahesh[/font]

    Look more carefully - the second query is 'GROUP BY ManagerID' and...

  • RE: Queries with Aggregate Functions

    [font="Verdana"]Answer should be 1, 2 and 4 as well as 2nd and 4th query are same.

    Mahesh[/font]

  • RE: Query regading sp_help_job

    [font="Verdana"]Hi John,

    Here is my last question. What seetings do I need to turn on / off while calling a job inside SProc? what thing I need to take care? Does...

  • RE: Query regading sp_help_job

    [font="Verdana"]

    John Marsh (5/18/2009)


    Hello Mahesh,

    Please see my additional comment above about the OpenRowSet workaround.

    Another option would be to gather the data directly from the msdb.dbo.sysjobXXXXX Tables/Views.

    Regards,

    John Marsh

    Thanks John, OPENROWSET method works....

  • RE: Query regading sp_help_job

    [font="Verdana"]Thanks again John. However its still throwing the below error

    Msg 8164, Level 16, State 1, Procedure sp_get_composite_job_info, Line 67

    An INSERT EXEC statement cannot be nested.

    Mahesh

    [/font]

  • RE: Query regading sp_help_job

    [font="Verdana"]Thanks John,

    Further I tried to create hash table. But actually sp_help_job SPorc returns 4 resultsets. I tried like

    Insert Into #JobDetails

    Exec sp_help_job Null, 'job_name'

    However it is throwing following error:

    Core...

  • RE: SSIS 2005 - Fast Load data query

    [font="Verdana"]Thank you,

    Mahesh[/font]

  • RE: SSIS 2005 - Fast Load data query

    [font="Verdana"]Hi All,

    Atleast can anybody let me know, what things to be consider while optimizing SSIS package? What things to be consider for deploying SSIS package from one server to another...

  • RE: Annoying NULLs

    [font="Verdana"]

    Create Table #Table

    (

    valint

    )

    Go

    Select val From #Table

    Go

    Declare @valint

    Select @val

    Go

    Declare @valint

    Set @val = Null

    Select @val

    Go

    Declare @valint

    Select@val = Null...

  • RE: Query results to a separate window

    [font="Verdana"]I think you are looking for a tool like RapidSQL. You will have separate window TAB for result and for queries. However it is tremendously slow as compared to MS...

  • RE: Please help me

    [font="Verdana"]Better you place your SProc inside DTS and here you can pass the paramenters runtime to the SProc. Then schedule the DTS.

    Mahesh[/font]

  • RE: Trigger after Insert - Multiple tables

    [font="Verdana"]

    amadriaga (3/25/2009)


    Hey folks,

    I need some expert advice. I have two tables, one 'Order' table and one 'OrderDetails' table. The 'Order' table store information about the order (Customer name, Phone number...

  • RE: Execution of a query

    [font="Verdana"]

    sandhyarao49 (3/25/2009)


    Hi All,

    I have written some sql queries for insertion and updation of the records on a table.

    Before executing the query how can I make sure the query that I...

  • RE: Print pop up is not popping up

    [font="Verdana"]Hi,

    I tried the below things:

    1. I added the below method

    objReportViewer.PrintDialog()

    2. Even thogh it was not working. Then I uninstalled Windows 2000 Hotfix – KB956390. It start popping up the Print...

Viewing 15 posts - 61 through 75 (of 362 total)