Forum Replies Created

Viewing 15 posts - 5,596 through 5,610 (of 13,468 total)

  • RE: SQL SERVER INDEXING

    well entire books have been written on indexing and improving performance;

    i think you'll need to read up via a google search first, and come back with specific questions.

  • RE: select rows based on code

    hbtkp (4/11/2012)


    no,

    this is select statement in my sp,

    i need to supply one parameter @name

    this contains 2 item suppose pen and pencil,

    and it gives me that 2 item ,

    now in table...

  • RE: select rows based on code

    i read your post twice, and I cannot visualize it;

    is this your what your data would look like?

    CREATE TABLE [dbo].[MYTABLE] (

    VARCHAR(10) ...

  • RE: Cursor alternatives

    Sean Lange (4/11/2012)


    Mine is incredibly close to yours Lowell. Instead of stuffing with dept I stuff arrive and just concatenated dept to the derived column.

    {snip}

    sheesh Sean; now that YOU did...

  • RE: Cursor alternatives

    my example is close by using FORXML, but i don't get the "ending/last" airport.

    flight_tran_idSkills

    1234MAN-LHR-JFK-LHR

    and my code example:

    ;WITH flight_tran_table (flight_tran_id , [(Other Tran Data)])

    AS

    (

    SELECT 1234, '(Other Tran Data)'

    ),

    flight_sectors_table(tran_id,sector_id,dept,arrive)

    AS

    (

    SELECT 1234,1,'MAN','LHR' UNION ALL

    SELECT...

  • RE: sqlserver1

    asranantha (4/10/2012)


    1)why a table can have one primerykey?

    2)what is derivedtable in sql server?

    3)what is subquery in sql server?

    4)what is insteadof trigger in tsql?

    plz tell me answers

    i've linked...

  • RE: Question regarding appropriate applications of SQL CLR

    whhjops! posted to the wrong thread!

  • RE: Date Format to String

    Cadavre (4/11/2012)


    Nice Lowell 😀

    I did a quick test to compare, as I normally do when I see something different.

    Cadavre I always love your performance tests.

    I have no idea how many...

  • RE: Tooltip Dilemma

    i've used soem javascript stuff to make a DIV appear based on mouseover; it should be easy to add to the report.

    obviously a DIV is not limited to any specific...

  • RE: floating error

    you said if you remove the exp() it works.

    what value is returned by sum(log(CASE WHEN field = 0.0 THEN 1 WHEN field IS NULL THEN 1 WHEN field= -100 THEN...

  • RE: Date Format to String

    SELECT CONVERT(VARCHAR,@date,112) + '' + REPLACE(CONVERT(VARCHAR,@date,108),':','')

    i keep a handy proc sp_dates in my master database so i can get a list of common datetime formats for myself:

    i just run sp_dates...

  • RE: trigger failing on data transfer

    =echo=

    i'm just Jack and Sean's Parrot today!

  • RE: trigger failing on data transfer

    paste the CREATE TRIGGER definition here, and the CREATE TABLE definitions for the two tables in question;

    with that, we should be able to show you exactly what the issue is.

    also,...

  • RE: Reading microseconds from Sql server into oracle 10g

    that was my point.

    I thought you said you said sourceid exists on SQL Server., and assumed you were doing the work from SQL server, with linked servers to Oracle.

    What confused...

  • RE: Need to tune sql

    since there is no WHERE statement, there's not really much to tune, right? that'll be a full table scan regardless of the indexing, I'm thinking.

    returning 4.9 million rows will take...

Viewing 15 posts - 5,596 through 5,610 (of 13,468 total)