Forum Replies Created

Viewing 15 posts - 286 through 300 (of 544 total)

  • RE: Where Statement affects Index?

    Matthew Darwin (5/11/2012)


    Do you mean the WHERE clause is in the index creation statement? Or do you mean in the SELECT statement you are using to query?

    oh yeah Matthew...i...

  • RE: How to check the columns within the table?

    Lowell (5/7/2012)


    well, it depends on the results you want, right?

    you had said at first you just wanted check how many rows are existed as like as above scenario...

    so displaying the...

  • RE: Problem in Replication

    sturner (5/9/2012)


    look in the snapshot log and/or the sql server logs, something is (or is not) happening as it should.

    Thank you Sturner...as you told, it takes some time to get...

  • RE: Problem in Replication

    sturner (5/9/2012)


    How big is the database? It could take a while to push the snapshot over there if its big, in which case you might want to just backup and...

  • RE: ssis

    asranantha (5/9/2012)


    The query failed to parse. Syntax error, permission violation, or other nonspecific error

    Brief the error...i mean post the exact error as like as it looks...

    where do you get the...

  • RE: Package job fails

    If you would like to pass connection strings through configuration files, you could see like below in the file...here you can edit passwords

    <Configuration ConfiguredType="Property" Path="\Package.Connections[Target].Properties[ConnectionString]" ValueType="String"><ConfiguredValue>Data Source=.;User ID=sa;Pwd=*****;Initial Catalog=DataBaseName;Provider=SQLNCLI10.1;Auto Translate=False;Application...

  • RE: ssis

    you can use Conditional split transformation...

  • RE: How to check the columns within the table?

    Lowell (5/7/2012)


    well, it depends on the results you want, right?

    you had said at first you just wanted check how many rows are existed as like as above scenario...

    so displaying the...

  • RE: How to check the columns within the table?

    Lowell (5/7/2012)


    Great job posting the DDL, that makes it SO easy to help!

    by using the INTERSEC operator, i seem to get the results you might be looking for;

    you could do...

  • RE: Expression to remove commas in dervied column?

    robert.gerald.taylor (5/7/2012)


    In a Derived column transform, you can do something like:

    [font="Courier New"]RIGHT(Field1,1) == "," ? SUBSTRING(Field1,1,LEN(Field1) - 1) : Field1[/font]

    I didn't check for an empty string or other possible problems,...

  • RE: Is Cursor Really Not Good?

    GSquared (4/25/2012)


    The problem rows have DIDOC# values. Your subquery (the Cross Apply query) requires that they be the same as per the first item in the Where clause. ...

  • RE: Is Cursor Really Not Good?

    dwain.c (4/24/2012)


    I think you've gotten the idea.

    Don't wait for us to desk check it. Run the SELECT (maybe with a TOP 100 or something) and look at the output...

  • RE: Is Cursor Really Not Good?

    GSquared,

    i have attached sample output of the script...and i high lightened the rows where i have problem...

    if ModIDRef has duplicates, again comment column has to be concatenated...and seqno = 1...

  • RE: Is Cursor Really Not Good?

    GSquared (4/24/2012)


    Okay, for clarification, is all this is doing is concatenating text together into a single text string, and then putting that in another table?

    If so, you definitely don't need...

  • RE: Is Cursor Really Not Good?

    If you guys are still not understanding about my requirements, please let me know so that i'll give you better explanation of my requirement...

    the two tables are like one to...

Viewing 15 posts - 286 through 300 (of 544 total)