Viewing 15 posts - 961 through 975 (of 1,047 total)
Well if they were in tempDB I could understand that. Are they in a user database?
December 10, 2009 at 12:39 pm
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...
November 20, 2009 at 7:54 am
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...
November 20, 2009 at 7:50 am
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...
November 18, 2009 at 10:11 am
sqlcmd is the (2005) replacement for osql
October 19, 2009 at 1:09 pm
rockingadmin (10/7/2009)
table1:
Custid levelid levelname fromlength tolength
ABC 1 ...
October 7, 2009 at 11:04 am
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...
October 7, 2009 at 9:11 am
rockingadmin (10/7/2009)
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...
October 7, 2009 at 8:29 am
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...
October 7, 2009 at 6:58 am
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...
October 6, 2009 at 12:43 pm
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...
September 30, 2009 at 12:47 pm
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.
September 30, 2009 at 12:39 pm
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.
September 30, 2009 at 12:24 pm
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...
September 23, 2009 at 3:16 pm
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...
September 23, 2009 at 3:07 pm
Viewing 15 posts - 961 through 975 (of 1,047 total)