Forum Replies Created

Viewing 15 posts - 1,981 through 1,995 (of 6,041 total)

  • RE: How would you track an insert to a detail table in your main table

    Assuming that AddressUno is an IDENTITY column this will be a lot easier to manage.

    First insert the Address table for home address, business address, etc. and for each use the...

    "Do not seek to follow in the footsteps of the wise. Instead, seek what they sought." - Matsuo Basho

  • RE: First Class Jobs

    jonathan.d.myers (12/2/2016)


    @ Eric: EXACTLY... It's the simple database objects that get the most attention because they're the simplest for a 3rd party tool to handle. They exist as actual OBJECTS...

    "Do not seek to follow in the footsteps of the wise. Instead, seek what they sought." - Matsuo Basho

  • RE: First Class Jobs

    Speaking of which, I've found that practically all database comparison / synchronization tools don't cover server level objects like jobs, logins, credentials, SSIS packages, or server options.

    "Do not seek to follow in the footsteps of the wise. Instead, seek what they sought." - Matsuo Basho

  • RE: Best and economical enterprise monitoring tool

    Jeff Moden (12/1/2016)


    Eric M Russell (12/1/2016)


    Jeff Moden (12/1/2016)


    Benki Chendu (11/29/2016)


    Friends,

    I have used Microsoft SCOM, HP Openview, BMC Patrol and a few more tools to monitor my database infrastructure..But currently, I...

    "Do not seek to follow in the footsteps of the wise. Instead, seek what they sought." - Matsuo Basho

  • RE: Best and economical enterprise monitoring tool

    Jeff Moden (12/1/2016)


    Benki Chendu (11/29/2016)


    Friends,

    I have used Microsoft SCOM, HP Openview, BMC Patrol and a few more tools to monitor my database infrastructure..But currently, I am using a tool called...

    "Do not seek to follow in the footsteps of the wise. Instead, seek what they sought." - Matsuo Basho

  • RE: Learn to Earn

    Area Man Uses This Simple Trick To Double His Income (AND SO CAN YOU!!)

    :rolleyes:

    "Do not seek to follow in the footsteps of the wise. Instead, seek what they sought." - Matsuo Basho

  • RE: The Pressure to Compromise Ethics

    ZZartin (12/1/2016)


    Eric M Russell (12/1/2016)


    Other than something like pushing a deployment outside the formal change control process or granting someone elevated permissions, has anyone here ever been asked to compromise...

    "Do not seek to follow in the footsteps of the wise. Instead, seek what they sought." - Matsuo Basho

  • RE: Stored procedure doesnt stop executing?

    savibp3 (12/1/2016)


    i'm running in sql browser doesn't support sp_who2

    Are you the DBA for this server; can you connect to the instance using SSMS or SQLCMD and execute SP_WHO2 ?

    "Do not seek to follow in the footsteps of the wise. Instead, seek what they sought." - Matsuo Basho

  • RE: The Pressure to Compromise Ethics

    Other than something like pushing a deployment outside the formal change control process or granting someone elevated permissions, has anyone here ever been asked to compromise their ethics while on...

    "Do not seek to follow in the footsteps of the wise. Instead, seek what they sought." - Matsuo Basho

  • RE: Stored procedure doesnt stop executing?

    savibp3 (12/1/2016)


    There is stored procedure which show no error but keeps on executing with stop.I had placed some select statements to debug when i stop the browser after some time...

    "Do not seek to follow in the footsteps of the wise. Instead, seek what they sought." - Matsuo Basho

  • RE: Is it Possible to Query Rows by Page ID?

    Gabriel P (11/30/2016)


    Hey, does anyone know if there's some undocumented feature that would allow you to query a table by FileID/PageID?

    Something like this:

    SELECT *

    FROM dbo.ThisTable

    WHERE $FID = @FileID

    AND $PID =...

    "Do not seek to follow in the footsteps of the wise. Instead, seek what they sought." - Matsuo Basho

  • RE: Query results omitting carriage returns/text formatting

    You can also strip characters from a string using the REPLACE function. The ASCII characters for carriage return is (13) and it's typically followed by a line feed (10).

    DECLARE @s-2...

    "Do not seek to follow in the footsteps of the wise. Instead, seek what they sought." - Matsuo Basho

  • RE: Find unused columns

    Even if a column contains the same value for every row, it can still very well be used. If you do choose to remove the physical column, you may want...

    "Do not seek to follow in the footsteps of the wise. Instead, seek what they sought." - Matsuo Basho

  • RE: open a SSIS package in design view fro SSIS catalog

    No, you can't open a SSIS project or package directly and edit in place, or at least it's not as easily done as jobs or stored procedures. However, there are...

    "Do not seek to follow in the footsteps of the wise. Instead, seek what they sought." - Matsuo Basho

  • RE: Mathematics/Algorithms in SQL

    For the concepts of relational algebra that underly SQL, here is an overview:

    https://en.wikipedia.org/wiki/Relational_algebra

    The mathematical operators and functions included in the T-SQL language are quite basic.

    https://msdn.microsoft.com/en-us/library/ms187716.aspx

    https://msdn.microsoft.com/en-us/library/ms177516.aspx

    "Do not seek to follow in the footsteps of the wise. Instead, seek what they sought." - Matsuo Basho

Viewing 15 posts - 1,981 through 1,995 (of 6,041 total)