Forum Replies Created

Viewing 15 posts - 181 through 195 (of 363 total)

  • RE: Trigger isn't fired on Bulk Insert via OleDb

    [font="Verdana"]Post your Bulk Insert query coz you need to mention (might be, u have already mentioned) FIRE_TRIGGER option inside the WITH clause. Triggers won't fire incase of bulk insert. You...

  • RE: Temp table in function

    [font="Verdana"]Let us know what you are going to do? Coz 1st thing, object can't be create inside UDF.

    by the way, the answer for your question is, NO

    Mahesh[/font]

  • RE: Trouble with subquery

    [font="Verdana"]Also make a habit of avoiding subqueries. Instead apply Joins like suggested by Mr. Hasan in his prev post.

    Mahesh[/font]

  • RE: Print SQL Query results to Printer

    [font="Verdana"]No. what you can do is, write o/p to file and then print the file.

    Mahesh[/font]

  • RE: Browser's Back Button Functionality

    [font="Verdana"]Java script is used to navigate Backward and Forward. for more information on this search for History.go() on dot Net sites. Usually History.go(-1) used to navigate Backward.

    Mahesh[/font]

  • RE: multiple left outer joins or logic

    [font="Verdana"]This question can't be answered on the fly. So, if possible, post some real life data from all the tables with expected o/p.

    Mahesh[/font]

  • RE: Can we use UPDATE with joins

    [font="Verdana"]Obviously.

    For Delete:

    Delete From A Inner Join B On A.Id = B.Id

    For Insert in different way like:

    Insert Into A (col1, Col2)

    Select B.Col1, C.Col2 From B Inner Join C On B.Id =...

  • RE: SQL JOIN - Questions

    [font="Verdana"]

    Table A: 1000 Rows

    Table B: 250 Rows

    Key question is :

    which table should come first when we are going to use JOIN ?

    No matter which type of Join you are...

  • RE: select * from scan where boxid =

    [font="Verdana"]Then you should post some sample data and all the conditions you needs to apply as well. don't expect the answers on the fly.

    Mahesh[/font]

  • RE: Benefits of XML with SQL Server

    [font="Verdana"]In case of passing table as a parameter to a SProc XML can be used.

    Mahesh[/font]

  • RE: select * from scan where boxid =

    [font="Verdana"]Not clear what exactly readable means. Though if I am not wrong do you need something like this ... ?

    select * from scan

    where boxid = 'RET0018438'

    ...

  • RE: IIF Statment/CASE Statement

    [font="Verdana"]You can not use control statements directly into Select statement. Instead use Case statement. For more information on Case refer BOL

    Mahesh[/font]

  • RE: Issues with working query - Help Needed.

    [font="Verdana"]

    Msg 8115, Level 16, State 8, Line 1

    Arithmetic overflow error converting numeric to data type numeric.

    From BOL

    Severity Levels 11 through 16

    These messages indicate errors that can be corrected by the...

  • RE: Sql Server 2000 Error Message

    [font="Verdana"]

    Location: recbase.cpp : 1375

    Are you referencing some DLL build in CPP? Is so, then check at the given line number in the recbase.cpp file. I don't think the mentioned error...

  • RE: table dependencies

    [font="Verdana"]system Stored Procedure, i.e. sp_depends will help you out. Try it.

    Mahesh[/font]

Viewing 15 posts - 181 through 195 (of 363 total)