محفوظ ل ال "قاعدة معطيات" صنف

كيف أن يعيّن أو تحرّكت إلهام [تبلسبس] [دتفيل] إلى آخر موقعة

يوم السّبت, أغسطس - آب [4ث], 2007

إلهام لا يزوّد قاعدة معطيات يتيح [أوسر ينترفس] أن يعيّن [دتفيل] من [تبلسبس], ولا قاعدة معطيات مديرة يستطيع بسهولة تحرّكت أو نقلت ال [دتفيل] إلى آخر موقعة أو دليل أنّ مختلفة من موقعة أصليّة على خلق القاعدة معطيات. ال [رنم] أو حركة مكان مهمة يضطرّ كنت أنجزت عن طريق إلهام [سقلبلوس] [كمّند لين ينترفس]. مهما, إن العملية يكون أنجزت عندما ال [تبلسبس] أيّ يمتلك ال [دتفيل] متوفّر على شبكة الإنترنات, خطأ سيقع.

استمرّت يقرأ كيف أن يعيّن أو تحرّكت إلهام [تبلسبس] [دتفيل] إلى آخر موقعة"""


كيف يستردّ قطرة [تبلسبس] وإلهام قاعدة معطيات عندما من غير قصد مفتاح للشطب [دتفيل]

يوم السّبت, أغسطس - آب [4ث], 2007

حادث يمكن يحدث, [إفن ثوو] هو يكون غالية واحدة. هذا خصوصا الحالة في إلهام قاعدة معطيات, أيّ يخزّن القاعدة معطيات أشياء طبيعيّا في [دتا فيل] على [هرد ديسك]. سريعة يد مديرات يمكن من غير قصد محات بعض من ال [دتفيلس], أو ال [دتفيلس] يمكن حصلت يفسد أو غيرمفهوم على [هرد ديسك] إخفاق. أنت يمكن حصلت أيضا بعض [دتفيلس] مفقودة بعد [دتبس ركفري] عملية. [إين ني كس], سيسبّب يفتقد [ا] أو [ا فو] [دتفيلس] إلهام قاعدة معطيات أن يفشل إلى تشغيل, يرجع ال [دب] كاملة منيعة.

استمرّت يقرأ كيف قطرة [تبلسبس] ويستردّ إلهام قاعدة معطيات عندما من غير قصد مفتاح للشطب [دتفيل]"""

كيف أن يزيل وسقطت [دتفيلس] من [تبلسبس] في إلهام قاعدة معطيات

يوم السّبت, أغسطس - آب [4ث], 2007

إلهام [ردبمس] يخزّن قاعدة معطيات معطيات منطقيّا [إين ث فورم وف] [تبلسبسس] وطبيعيّا [إين ث فورم وف] [دتا فيل]. أضفت ال [دتفيلس] إلى ال [تبلسبسس] بما أنّ قاعدة معطيات فراغ متطلب ينمو كبيرة. مهما, هناك عدّة أسباب أنت يمكن أردت أن يزيل أو محات [دتا فيل] من [تبلسبس]. أضفت مثل من غير قصد خطأ يرتّب أو غيرمطلوب [دتفيل] إلى [تبلسبس], أو المعطيات فراغ إستعمال أصبح صغيرة وبعض [دتا فيل] يريدون أن يكون أزلت, أو يحاول أن يستردّ إلهام قاعدة معطيات أيّ يفشل أن يبدأ واجبة إلى يفتقد أو يفسد [دتفيلس] ب يزيلهم, إلهام لا يزوّد يتيح طريق أو [أوسر ينترفس] أن يمحو أو سقطت [دتفيلس] من [تبلسبس]. Once a datafile is made part of a tablespace, it can no longer be detached or removed from the tablespace, albeit there are several workarounds.

Continue reading How to Remove and Drop Datafiles from Tablespace in Oracle Database » » »

How to Backup and Restore (Export and Import) MySQL Databases Tutorial

Saturday, July 21st, 2007

phpMyAdmin can be used to export or backup MySQL databases easily. However, if the database size is very big, it probably won’t be a good idea. phpMyAdmin allows users to save database dump as file or display on screen, which involves exporting SQL statements from the server, and transmitting the data across slower network connection or Internet to user’s computer. This process slow the exporting process, increase database locking time and thus MySQL unavailability, slow the server and may simply crash the Apache HTTPD server if too many incoming web connections hogging the system’s resources.

Continue reading How to Backup and Restore (Export and Import) MySQL Databases Tutorial » » »


MySQL Error 1170 (42000): BLOB/TEXT Column Used in Key Specification Without a Key Length

Monday, July 9th, 2007

When creating a new table or altering an existing table with primary keys, unique constraints and indexes, or when defining a new index with Alter Table manipulation statement in MySQL database, the following error may occur and prohibit the the command from completing:

ERROR 1170 (42000): BLOB/TEXT column ‘field_name’ used in key specification without a key length

Continue reading MySQL Error 1170 (42000): BLOB/TEXT Column Used in Key Specification Without a Key Length » » »

Remove or Trim First or Last Few Characters in MySQL Database with SQL

Monday, April 23rd, 2007

Another useful string function in MySQL database is TRIM() which will return a text string after removing the matching leading or trailing characters, also known as prefixes or suffixes. It’s been described by MySQL reference as function that returns the string str with all remstr prefixes or suffixes removed. If none of the specifiers BOTH, LEADING, or TRAILING is given, BOTH is assumed. remstr is optional and, if not specified, spaces are removed.

Continue reading Remove or Trim First or Last Few Characters in MySQL Database with SQL » » »

How to Find and Replace Text in MySQL Database using SQL

Monday, April 23rd, 2007

MySQL database has a handy and simple string function REPLACE() that allows table data with the matching string (from_string) to be replaced by new string (to_string). This is useful if there is need to search and replace a text string which affects many records or rows, such as change of company name, postcode, URL or spelling mistake.

Continue reading How to Find and Replace Text in MySQL Database using SQL » » »

How to Escape Characters in Oracle PL/SQL Queries

Saturday, March 24th, 2007

Oracle databases reserve some special characters with specific meaning and purpose within Oracle environment. These reserved characters include _ (underscore) wild card character which used to match exactly one character, % (percentage) which used to match zero or more occurrences of any characters and ‘ (apostrophe or quotation mark) which used to mark the value supplied. These special characters will not be interpreted literally when building SQL query in Oracle, and may caused error in results returned especially when performing string search with LIKE keyword. To use these characters so that Oracle can interpret them literally as a part of string value instead of preset mean, escape character has to be assigned.

Continue reading How to Escape Characters in Oracle PL/SQL Queries » » »