Forum Replies Created

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

  • RE: The Growth of Storage

    I have no idea when we'll get there, but I have no doubt we will, though I truely suspect we will see a return to dumb terminals and huge servers,...

  • RE: The Auditing Poll

    We audit all user editable data. I use a trigger to simply add a complete copy of the record being inserted/updated/deleted to a duplicate (non-indexed), table. I have...

  • RE: Field Level Auditing using Change Data Capture - Part 1

    Nice article, thanks for the explanation and great examples. I'm quite tempted to change from my current auditng techniques to this as it would be much more efficient, however...

  • RE: Benefits

    It was bound to happen, when things are tight, the squeeze is passed down, the folks at the top of the food chain are going to look out for their...

  • RE: SPLIT DATA SET IN TWO

    Dave provided the simplest (and best) answer for question asked, however if you are interested in exploring alternative methods of arriving at the same answer you could try:

    with cte1 as...

  • RE: Working Long or Working Hard?

    I'm adverse to hard physical labor. I learned at a young age (by doing it) that I'd rather have a job that required difficult mental labor than physical labor...

  • RE: Join Problem

    Paul, Thanks for the example that recreates the problem in miniture and with my own tables. Quite helpful in seeing that the problem lies with the function and...

  • RE: Join Problem

    I have a work around using a temp table the returns the results I require in less than a second, though I still don't understand what is causing the problem....

  • RE: Join Problem

    Yes my original post was the estimate. I'll try to clean up some disk space (only got 15 gb free) and see if I can get it to finish...

  • RE: Join Problem

    Gail, I did read your link on how to post performance problems. Thanks for that article it was very informative, fortunately I've not had to many performance issues...

  • RE: Join Problem

    I appreciate you all taking a look. Sorry I couldn't post this last night (technical issues 🙂

    I'm attaching The table/function definitions along with the query plan

    I had forgotten...

  • RE: Auditing

    After cooresponding with mcerkez88 I took his idea and implemented it using triggers. Attached is a text file that contains the DDL to create the "Audit" table, a trigger...

  • RE: Auditing

    mcerkez88 (7/30/2010)


    In our system we audit everything by storing a new state of table row into audit log as xml record along with the info who and when made the...

  • RE: Auditing

    We audit select "tables". I have a generic trigger I apply to all tables of interest which simply makes a copy of an existing row before it is changed/deleted...

  • RE: Backup Database Task (Maintenance Plan) file name question

    I found the solution in another post: http://qa.sqlservercentral.com/Forums/Topic506723-357-1.aspx

    Here is my implementation -

    declare @FileName_ varchar(100)

    declare @RestoreFile_ varchar(200)

    declare @Path_ varchar(1000)

    ...

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