Forum Replies Created

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

  • RE: Creating a new VIEW (SQL Server)

    I think it is a homework question. You may want to set up  a separte table for languages with canditate id or set up a check constraint for langauge column and...

  • RE: Error handling deadlock issue

    Try this

     

    Declare @Errcounter INT

    Blah blah blah

    IF @@error <> 0 GOTO ErrorHandler

    ErrorHandler:

    If @@error = 1205 AND @ErrCounter = 4

    BEGIN

    WAITFOR DELAY '00:00:00.30'

     SET @ErrCounter = @ErrCounter + 1

    GOTO SelectInit

    END

  • RE: Interview Question

    Yes, there is a way to create a schema and save that...and you can basically do for all database objects..

    Right click on DB from enterprise manager. click on "all tasks"...

  • RE: performance tuning

    You are asking very large question in a very small place. I can tell you this from experience that that there is no text book answer to this question. Yes,...

  • RE: Indexing and TranLogs

    That is nuts...so what do we do when we have 135GB database. What are some of the strategies we can use to reindex the large tables??Any suggestions??/

  • RE: Indexing and TranLogs

    Good idea...I would have given that a shot..But I am back from my assignment. Will pass it on and see how it works..

  • RE: Indexing and TranLogs

    The error is saying that production DB log is getting full. I am not sure about the tempDB part..Can u please elaborate..but I will read on it too..Sometime explaining work better.

    thanks

  • RE: SP name

    I had to struggle with the same issue about two years back. And the best solution I found was to add dbo prefix. I made this part of database documentation.

    If...

  • RE: SP name

    dbo will show if the owner of the database creates a sp or any object. If you want to forcefully show the dbo then Create objects like this.

    Create table dbo.tablename

    create...

  • RE: Question about Optimizations

    Are you running anything else with your maintenance plans. Like Backups or integrity checks. Remember Transaction log, records any changes to the Database.

    Try also backing up the transaction log...

  • RE: Comparing the data in two tables

     SQL COMPARE BUNDLE  from REDGATE Software for comparing.

    For inserting you would probably have to write your own scripts.

  • RE: Sql Server dba duties/checks list

    Ideally very minimal. But Hey, this world is not ideal. Thanks to Mr. Bill Gates.

    The fact remains whenever we cant find a solution to a problem we fall back on...

  • RE: demo version? wrong.

    I also ran it on my machine and I have  identical info..only with an exception of service pack.

    Did you load both test and production with same CD?

    Also did you upgraded...

  • RE: demo version? wrong.

    try select @@version and see what it says...

  • RE: DBO User is not in Database

    dbo in the database is not a user. Its a Alias. Whoever is the database owner his login will deafult to dbo until and unless you change the Alias by...

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