Forum Replies Created

Viewing 15 posts - 481 through 495 (of 707 total)

  • RE: Identity Crisis

    Gud question. I had forgotten abt incremental value as I never use it. I always increment identity column with default value.

  • RE: The multi-part identifier could not be bound.

    Don't know if I understand what exactly you want.

    Insert InTo tblCUSTOM281009(iSalutation )

    SELECT iSalutation

    FROM dbo.tblCustPerson

    Inner Join dbo. tblCUSTOM281009 On dbo.tblCustPerson.iCustID = dbo.tblCUSTOM281009.icustID

    order by dbo.tblCustPerson.iSalutation

  • RE: How to copy SQL Server primary data file and log file, please help

    First of all don't panic. Cool down. There are many experienced SQL experts here in this forum. They will give you a proper solution.

    I think you can stop SQL Server...

  • RE: Clean Up Maintainence Task

    [you made my day,Exactly I should not have the period infront of bak file.

    I am specifying as .bak

    Haaa...gud. Whenever we do something new we gotta check everything left and right....

  • RE: How to increase server memory limit >2GB?

    Yeah...If it's 32 bit you will have to enable AWE option.

    In 64 bit it's not necessary.

  • RE: how can we copy one database table to another DB table?

    how can we copy one database table to another DB table without script and insert statement?

    You mean you want to copy data from one DB to another.?

    Is the table...

  • RE: Rename mdf and ldf files ?

    It doesn't leave the DB in the offline state, doesn't put it online. In fact (if you check the sys.databases view) the state of a DB after doing this is...

  • RE: Rename mdf and ldf files ?

    If you leave out either step 1 or step 3, the DB will be suspect when it's brought online.

    Gila, Infact it's not coming online at all. Getting the error saying...

  • RE: Rename mdf and ldf files ?

    make sure you use alter database modify file command between offline and online so SQL knows the new name of the file. Otherwise database won't come back online.

    Sorry !...Missed this...

  • RE: Rename mdf and ldf files ?

    Tara-1044200 (10/15/2009)


    1. how do i rename mdf and ldf file names of a database without restoring or creating new database and move the data ?

    Take the database OFFLINE. Go and...

  • RE: Clean up history log

    Welcome..It happens..

  • RE: Clean up history log

    Can't you add a "Maintenance Cleanup Task" and delete those files..?

  • RE: How to practise DBA activities on my own.

    Thanks a ton bitbucket. Was expecting such replys.

    Started doing all these. Planning to attend MCTS exam within 15 days.

    SQL Experts...any other suggestions/links ?.

    Once again thanks a lot.

  • RE: How to practise DBA activities on my own.

    Books online is your friend in this matter. Even if you have huge database you cannot replicate the real time environment. There are lot to learn other than performance...

  • RE: Design of Master / Child Tables ???

    1.Master_Market

    2.Master_Product (FK to Primary of Master_Market )

    3.Master_Model (FK to Primary of Master_Product )

    but user will be selecting Master_Model level info, i am saving Master_Model internal id (PK) into database.

    There's nothing...

Viewing 15 posts - 481 through 495 (of 707 total)