Forum Replies Created

Viewing 15 posts - 961 through 975 (of 1,048 total)

  • RE: Encrypted Stored Procedures

    Well if they were in tempDB I could understand that. Are they in a user database?

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: Table insert performance ... please help!

    One other thought... if this table is just used for archiving stuff I would batch this and use bulk insert instead of inserting one row at a time. Even...

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: Table insert performance ... please help!

    Do you have a clustered index on the table? If so which column... and what is the distribution Vs. the order of insertion?

    If the clustered index is on a column...

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: Performance problem issue...............

    90% of the time I find that poor performance is directly related to poor design of the database, data structures and business logic (stored procedures and application code). The other...

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: execute a .sql file from query anyalyzer

    sqlcmd is the (2005) replacement for osql

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: Foreign key between two primary keys of two tables

    rockingadmin (10/7/2009)


    table1:

    Custid levelid levelname fromlength tolength

    ABC 1 ...

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: Foreign key between two primary keys of two tables

    is there is a one to many relationship between custid -----> levelid ? In other words, can a single customer have many levelid's associated with him? You haven't made that...

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: Foreign key between two primary keys of two tables

    rockingadmin (10/7/2009)


    Query 1:

    both the tables will have unique values. that's y i make them as primary key.

    can i make custid in table2 as primary key and create a composite...

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: Foreign key between two primary keys of two tables

    Looks sort of hokey to me. In my opinion, if you are going to have a custid it should be a unique PK in and of itself. Having...

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: Windows Principal Orphan (DETECT, DELETE and/or DROP)

    that user is the owner of schemas or other objects in the database. change ownership of those objects to another user and then you should be able to drop that...

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: Cloning table structure, indexes, foreign keys etc. using SMO

    If you need to put the new column into a specified position (other than at the end, where it would go in the case of ALTER TABLE ADD COLUMN) then...

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: Best Practice to Backup teh Database

    You can set up a SQL maintenance task to back up whatever DBs and/or translogs you want. I generally set up my own translog backup procedures for log shipping though.

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: Best Practice to Backup teh Database

    backup to disk, compress and/or encrypt and then move the files to multiple other disk locations, one of which can be backed up to tape.

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: SQL Server and file system fragmentation (not database fragmentation)...

    You can defrag the drives.

    'strategies' for minimizing the need to do this is really just good planning of the disk layout and space allocation. Put your backups on a separate...

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: Some interesting thoughts on SQL Server

    As far as your number 2. observation, if Oracle is capable of having multiple instances that are different versions then they may not be able to share anything in the...

    The probability of survival is inversely proportional to the angle of arrival.

Viewing 15 posts - 961 through 975 (of 1,048 total)