Forum Replies Created

Viewing 15 posts - 1 through 15 (of 201 total)

  • RE: Inquiry about saving formatted data

    patrickmcginnis59 10839 - Monday, December 3, 2018 8:27 AM

    Thank you very much Patrick.
    This is exactly what i wanted,...

  • RE: Inquiry about table design

    HappyGeek - Monday, December 3, 2018 5:25 AM

    You could consider the use of a filestream.

    Thank you for your reply.
    Do you mean save...

  • RE: Inquiry about table design

    Jonathan AC Roberts - Monday, December 3, 2018 3:33 AM

    nadersam - Sunday, December 2, 2018 11:42 PM

  • RE: Inquiry about joining tables

    Thank you.

  • RE: Inquiry about joining tables

    Thom A - Tuesday, November 27, 2018 4:40 AM

    Technically, no, however, the latter is the ANSI-89 syntax and some features of it...

  • RE: Splitting data files caused performance issue

    John Mitchell-245523 - Monday, November 19, 2018 2:38 AM

    nadersam - Monday, November 19, 2018 1:31 AM

    November 19, 2018 at 2:55 am

    #2013934

  • RE: Splitting data files caused performance issue

    Thank you for all replies above, from what i understand the performance issue is related to shrinking the database which we will avoid.
    Now after we did the mentioned step...

  • RE: Splitting data files caused performance issue

    Jonathan AC Roberts - Sunday, November 18, 2018 7:28 AM

    nadersam - Sunday, November 18, 2018 5:19 AM

  • RE: Object Dependency

    John Mitchell-245523 - Monday, October 2, 2017 7:20 AM

    Nader

    Difficult when I can't see what's in your database.  But try changing referencing_id to...

  • RE: Object Dependency

    After reviewing the results, i found an issue.
    The result is not containing the objects that don't depend on any other objects (ex: functions that splits some strings).
    but have...

  • RE: Object Dependency

    Thanks for your correction.
    I have changed it like follows and used distinct and max to eliminate repetition, i think it's ok now and i hope it's useful for other...

  • RE: Object Dependency

    Thank you John for your explanation.
    Now things are getting better after i changed the SQL as follows
    WITH CTE_Dep
    as
    (
    SELECT sys.objects.object_id, sys.sql_expression_dependencies.referenced_id,sys.objects.name, 0 AS SortIndex,111 as...

  • RE: Object Dependency

    I am sorry i still couldn't do it but the recursive CTE concept is still new to me , i have tried many other example but table and data structure...

  • RE: Object Dependency

    John Mitchell-245523 - Monday, October 2, 2017 2:31 AM

    You've still used name in the second part of the CTE, which is where I...

  • RE: Object Dependency

    I have simplified the query by removing some unneeded joins and used the id instead of name as you mentioned earlier as follows.
    WITH CTE_Dep
    as
    (
    SELECT sys.objects.name,...

Viewing 15 posts - 1 through 15 (of 201 total)