Forum Replies Created

Viewing 15 posts - 271 through 285 (of 535 total)

  • RE: Log File Issues

    switch your recovery model to Bulk logged before the reindex work and then back to full afterwards. then see what the maximum log usage is after that for a...

  • RE: Limit users with Management Studio Accessing a DB

    you could look at the possibility of logon trigger, where you roll back logins based on the application type. you would obviously have to put some checking in to...

  • RE: How to store output of a Script in a .csv file in sql 2005?

    use SSIS.

    use a data flow task to output your query results to file. use a send mail task to attach the file (the csv you just made) to the...

  • RE: Limit users with Management Studio Accessing a DB

    is the DB that uses windows authentication and the application database the same database?? if so why do your domain users all have full insert/update/delete when you are using...

  • RE: How to know when an SSIS package is updated in SQL 2005?

    do you keep the SSIS packages on the file system or in MSDB? if you keep them on the file system then the modified date of the package will...

  • RE: What are jobs a DBA can create?

    fundemental jobs are your backups and integrity checks, without these your asking for a whole world of pain.

    after that you should be looking to introduce index rebuilds/reorganisation, there is a...

  • RE: Windows account

    generally if you are asked about that in a SQL server interview/exam you would be expected to know that unix users would need a sql login whereas windows users can...

  • RE: SQL 2005 Enforce Licensing

    you could probably do this through some kind of logon trigger whereby you count the number of current logins and then either roll back the logon if its 20 or...

  • RE: 70-443 Question

    karthikaug18 (4/20/2009)


    Thanks Gila. but i just want to know how the question will be.

    i believe 70-443 is case study based. you get around 7 scenarios each containing around 6...

  • RE: Sp_send_Dbmail Image Issue

    parth83.rawal (3/16/2009)


    SEND ME MAIL ON parth83.rawal@gmail.com,

    though i am already having html code but issue only is not able to put image in my HTML.

    Just emailed you, let me know...

  • RE: Sp_send_Dbmail Image Issue

    I dont believe you can do a case statement within HTML. If you cant implement the solution i mentioned in my last post it might be possible to end...

  • RE: Sp_send_Dbmail Image Issue

    im not 100% sure if you can do that kind of thing in HTML code or not. From what i can tell you are trying to return some kind...

  • RE: Sp_send_Dbmail Image Issue

    rar!! can someone tell me how to post HTML code without it removing all the tags...please? 🙂

  • RE: Sp_send_Dbmail Image Issue

    yes you can show images in your HTML emails. Do you want to post the code you have so far. Is the SP failing to execute or are...

  • RE: How to rollback in sql server

    rollback is the same in sql

    Begin transaction

    'Do your stuff

    Rollback Transaction

    There are a couple of ways you can check for errors

    The old school way is to check for errors after each...

Viewing 15 posts - 271 through 285 (of 535 total)