Forum Replies Created

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

  • RE: Auditing User Actions

    If you have Enterprise (or Developer) edition you could implement Database-Level Action Audit, which includes DML actions. I haven't personally implemented this level of auditing, but I can't see why...

    -----------------
    ... Then again, I could be totally wrong! Check the answer.
    Check out posting guidelines here for faster more precise answers[/url].

    I believe in Codd
    ... and Thinknook is my Chamber of Understanding

  • RE: SQL Server Express and SQL Server Agent?

    I find slightly silly to install it with SQL Server Express if it's not meant to work??? :angry:

    I seem to remember the reasoning behind this is to allow you to...

    -----------------
    ... Then again, I could be totally wrong! Check the answer.
    Check out posting guidelines here for faster more precise answers[/url].

    I believe in Codd
    ... and Thinknook is my Chamber of Understanding

  • RE: SSMS connection to SSIS with packages on remote MSDB server - is that even remotely possible?

    In my experience scaling out SSIS in that manner isn't possible.

    In fact I have a Connect ticket suggesting this as a feature, and extending this concept further by connecting multiple...

    -----------------
    ... Then again, I could be totally wrong! Check the answer.
    Check out posting guidelines here for faster more precise answers[/url].

    I believe in Codd
    ... and Thinknook is my Chamber of Understanding

  • RE: QUERY SALVATION

    Just building on what you already have...

    SELECT Group, SUM(Received), SUM(Paid)

    FROM (

    SELECT a.ReceiverGroup AS Group, SUM(a.Value) as Received, 0 as Paid

    ...

    -----------------
    ... Then again, I could be totally wrong! Check the answer.
    Check out posting guidelines here for faster more precise answers[/url].

    I believe in Codd
    ... and Thinknook is my Chamber of Understanding

  • RE: Progress of a maintenance action?

    it has a column percent_complete that lets you know the progress

    Although be careful, as it is not always accurate and very much an estimation.

    Accuracy in my experience depends on...

    -----------------
    ... Then again, I could be totally wrong! Check the answer.
    Check out posting guidelines here for faster more precise answers[/url].

    I believe in Codd
    ... and Thinknook is my Chamber of Understanding

  • RE: Check this correct - my DBCC script

    ...is this the best way of doing it (there is a lot of database across multiple servers and some are large)

    I like to use Ola Hallengren script for DB maintenance...

    -----------------
    ... Then again, I could be totally wrong! Check the answer.
    Check out posting guidelines here for faster more precise answers[/url].

    I believe in Codd
    ... and Thinknook is my Chamber of Understanding

  • RE: Returning the Top X row for each group

    Madhivanan-208264 (12/6/2010)


    More methods are available here

    http://beyondrelational.com/blogs/madhivanan/archive/2008/09/12/return-top-n-rows.aspx

    Awesome article Dave, and a great follow up (and hollistic) resource Old Hand. Thanks for sharing guys!

    -----------------
    ... Then again, I could be totally wrong! Check the answer.
    Check out posting guidelines here for faster more precise answers[/url].

    I believe in Codd
    ... and Thinknook is my Chamber of Understanding

  • RE: Performance issue while fetching 20000000 records

    I have 20000000 records in table1 which i joined with another table on some criteria and computing the value and then aggregating all the records and displayed it into screen

    From...

    -----------------
    ... Then again, I could be totally wrong! Check the answer.
    Check out posting guidelines here for faster more precise answers[/url].

    I believe in Codd
    ... and Thinknook is my Chamber of Understanding

  • RE: what is new method in create a script in (scptxfr.exe') for 2008

    I seem to remember that SQL 2008 doesn't ship with scptxfr.exe anymore, which leads to the assumption that there are no new methods for sql 2008... I could be wrong...

    -----------------
    ... Then again, I could be totally wrong! Check the answer.
    Check out posting guidelines here for faster more precise answers[/url].

    I believe in Codd
    ... and Thinknook is my Chamber of Understanding

  • RE: ssms reports library not registered.

    Can't find anything in google about this. Thoughts?

    Shot in the dark here, but you could try re-installing the latest version of .NET (4), I had a few issues with SQL...

    -----------------
    ... Then again, I could be totally wrong! Check the answer.
    Check out posting guidelines here for faster more precise answers[/url].

    I believe in Codd
    ... and Thinknook is my Chamber of Understanding

  • RE: Execute scripts from directory by desired order

    Can someone tell me if this is possible to achieve and how? or to propose another approach...

    I think the SSIS approach is fine (although maybe I would've done it in...

    -----------------
    ... Then again, I could be totally wrong! Check the answer.
    Check out posting guidelines here for faster more precise answers[/url].

    I believe in Codd
    ... and Thinknook is my Chamber of Understanding

  • RE: Help in writing a statement

    You'll need to provide more information, such as table structure and what have you tried so far.

    Check-out the link below (in my sig) for posting guidelines.

    -----------------
    ... Then again, I could be totally wrong! Check the answer.
    Check out posting guidelines here for faster more precise answers[/url].

    I believe in Codd
    ... and Thinknook is my Chamber of Understanding

  • RE: Any difference in these two statements ?

    I dont think there is any difference in performance, but you could always check the execution plan to make sure!

    />L

    -----------------
    ... Then again, I could be totally wrong! Check the answer.
    Check out posting guidelines here for faster more precise answers[/url].

    I believe in Codd
    ... and Thinknook is my Chamber of Understanding

  • RE: SQL Server Import Error

    Error 0xc020901c: Data Flow Task 1: There was an error with output column "LocalLanguageLabel" (18) on output "Excel Source Output" (9). The column status returned was: "Text was truncated or...

    -----------------
    ... Then again, I could be totally wrong! Check the answer.
    Check out posting guidelines here for faster more precise answers[/url].

    I believe in Codd
    ... and Thinknook is my Chamber of Understanding

  • RE: Linked Server b/w 2008 R2 and 2012

    So can we have good compatibility while developing linked server between 2008r2 and 2012 or do we need to have both servers on same page?

    On a general level, I have...

    -----------------
    ... Then again, I could be totally wrong! Check the answer.
    Check out posting guidelines here for faster more precise answers[/url].

    I believe in Codd
    ... and Thinknook is my Chamber of Understanding

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