英文字典中文字典


英文字典中文字典51ZiDian.com



中文字典辞典   英文字典 a   b   c   d   e   f   g   h   i   j   k   l   m   n   o   p   q   r   s   t   u   v   w   x   y   z       







请输入英文单字,中文词皆可:

collation    
n. 对照.校对;小吃;便餐

对照.校对;小吃;便餐

collation
对照

collation
对照 理序

collation
n 1: a light informal meal [synonym: {bite}, {collation}, {snack}]
2: assembling in proper numerical or logical sequence
3: careful examination and comparison to note points of
disagreement

Collation \Col*la"tion\, n. [OE. collacioun speech, conference,
reflection, OF. collacion, F. collation, fr. L. collatio a
bringing together, comparing, fr. collatum (used as the
supine of conferre); col- latium (used as the supine of
ferre to bear), for tlatum. See {Tolerate}, v. t.]
1. The act of collating or comparing; a comparison of one
copy er thing (as of a book, or manuscript) with another
of a like kind; comparison, in general. --Pope.
[1913 Webster]

2. (Print.) The gathering and examination of sheets
preparatory to binding.
[1913 Webster]

3. The act of conferring or bestowing. [Obs.]
[1913 Webster]

Not by the collation of the king . . . but by the
people. --Bacon.
[1913 Webster]

4. A conference. [Obs.] --Chaucer.
[1913 Webster]

5. (Eccl. Law) The presentation of a clergyman to a benefice
by a bishop, who has it in his own gift.
[1913 Webster]

6. (Law)
(a) The act of comparing the copy of any paper with its
original to ascertain its conformity.
(b) The report of the act made by the proper officers.
[1913 Webster]

7. (Scots Law) The right which an heir has of throwing the
whole heritable and movable estates of the deceased into
one mass, and sharing it equally with others who are of
the same degree of kindred.
[1913 Webster]

Note: This also obtains in the civil law, and is found in the
code of Louisiana. --Bouvier.
[1913 Webster]

8. (Eccles.) A collection of the Lives of the Fathers or
other devout work read daily in monasteries.
[1913 Webster]

9. A light repast or luncheon; as, a cold collation; -- first
applied to the refreshment on fast days that accompanied
the reading of the collation in monasteries.
[1913 Webster]

A collation of wine and sweetmeats. --Whiston.
[1913 Webster]

{Collation of seals} (Old Law), a method of ascertaining the
genuineness of a seal by comparing it with another known
to be genuine. --Bouvier.
[1913 Webster]


Collation \Col*la"tion\, v. i.
To partake of a collation. [Obs.]
[1913 Webster]

May 20, 1658, I . . . collationed in Spring Garden.
--Evelyn.
[1913 Webster]

46 Moby Thesaurus words for "collation":
allocation, allotment, apportionment, arrangement, array, arraying,
ascertainment, assurance, bite, certification, check, checking,
collocation, comparative scrutiny, confirmation, constitution,
cross-check, deployment, determination, disposal, disposition,
distribution, ensuring, establishment, form, formation,
formulation, light lunch, light meal, light repast, marshaling,
nosh, order, ordering, placement, reassurance, reassurement,
refreshments, regimentation, snack, spot of lunch, structuring,
substantiation, syntax, validation, verification

COLLATION, descents. A term used in the laws of Louisiana. Collation -of
goods is the supposed or real return to the mass of the succession, which an
heir makes of the property he received in advance of his share or otherwise,
in order that such property may be divided, together with the other effects
of the succession. Civil Code of Lo. art. 1305.
2. As the object of collation is to equalize the heirs, it follows that
those things are excluded from collation, which the heir acquired by an
onerous title from the ancestor, that is, where he gave a valuable
consideration for them. And upon the same principle, if a co-heir claims no
share of the estate, he is not bound to collate. Qui non vult hereditatem,
non cogitur ad collationem. See Id. art. 1305 to 1367; And @Hotchpot.


COLLATION, eccl. law. The act by which the bishop, who has the bestowing of
a benefice, gives it to an incumbent. T. L.


COLLATION, practice. The comparison of a copy with its original, in order to
ascertain its correctness and conformity; the report of the officer who made
the comparison, is also called a collation.


请选择你想看的字典辞典:
单词字典翻译
COLLATION查看 COLLATION 在百度字典中的解释百度英翻中〔查看〕
COLLATION查看 COLLATION 在Google字典中的解释Google英翻中〔查看〕
COLLATION查看 COLLATION 在Yahoo字典中的解释Yahoo英翻中〔查看〕





安装中文字典英文字典查询工具!


中文字典英文字典工具:
选择颜色:
输入中英文单字

































































英文字典中文字典相关资料:


  • sql - What does collation mean? - Stack Overflow
    A Collation compared two strings like, if a word is greater than another one, and sort accordingly If you are using “latin1” Character set, you can use “latin1_swedish_ci” Collation You have to choose right collation because wrong collation may affect your database performance
  • What does character set and collation mean exactly?
    A collation comprises rules that specify how characters can be compared for sorting Collations rules can be locale-specific: the proper order of two characters varies from language to language Choosing a character set and collation comes down to whether your application is internationalized or not
  • How to change collation of database, table, column?
    Yes, you need to specificities the column type Here is a magic command to get all the types Using multi-line editing you can generate the command to update all columns at once starting here: SELECT table_schema , table_name , column_name , COLLATION_NAME , COLUMN_TYPE FROM information_schema columns WHERE collation_name != 'utf8_general_ci' AND table_schema not in ('information_schema
  • How I can obtain the collation of a specific table in a database?
    Collation at the table level is on a per column basis, so it is possible to have a collation different than the database If the collation is not defined at the column level, it defaults to the database collation setting SQL Server 2000: SELECT c name, c collation FROM SYSCOLUMNS c WHERE [id] = OBJECT_ID('your_table_name')
  • How to fix a collation conflict in a SQL Server query
    You can resolve the issue by forcing the collation used in a query to be a particular collation, e g SQL_Latin1_General_CP1_CI_AS or DATABASE_DEFAULT For example: SELECT MyColumn FROM FirstTable a INNER JOIN SecondTable b ON a MyID COLLATE SQL_Latin1_General_CP1_CI_AS = b YourID COLLATE SQL_Latin1_General_CP1_CI_AS
  • What does COLLATE SQL_Latin1_General_CP1_CI_AS do?
    The name of the collation that you use shows that it uses the Latin1 code page 1, is case insensitive (CI) and accent sensitive (AS) This collation is used in the USA, so it will contain sorting rules that are used in the USA The collation decides how text values are compared for equality and likeness, and how they are compared when sorting
  • COLLATION utf8_general_ci is not valid for CHARACTER SET utf8mb4
    Go to PHPMYADMIN, select the database, and hit OPERATIONS, there at the end, find COLLATION select a collation what will work for you 'utf8mb4_unicode_ci' for example, then check both 'Change all tables collations' and 'Change all tables columns collations' hit GO My database worked perfectly
  • banco de dados - O que é collation? - Stack Overflow em Português
    A collation ollation define o conjunto de regras que o servidor irá utilizar para ordenação e comparação entre textos, ou seja, como será o funcionamento dos operadores =, >, <, order by, etc Por exemplo, dependendo da Collation configurada, o sistema irá ordenar o caractere 'ö' entre os caracteres ‘o’ e ‘p’, usando outra collation, esse caractere pode ser ordenado em outra
  • SQL Server : when to use collation and nvarchar - Stack Overflow
    SQL Server has a default collation which is used with new databases and - very important! - within your temp table It is allowed to define a different default collation on database level, but this can lead to severe problems, if you run queries against the temp table where the collation is not the same
  • How to use the COLLATE in a JOIN in SQL Server?
    Msg 468, Level 16, State 9, Line 8 Cannot resolve the collation conflict between "SQL_Latin1_General_CP1_CI_AS" and "Latin1_General_CI_AS" in the equal to operation This is the code I´m using: SELECT * FROM [FAEB] [dbo] [ExportaComisiones] AS f JOIN [zCredifiel] [dbo] [optPerson] AS p ON (p vTreasuryId = f RFC) COLLATE Latin1_General_CI_AS





中文字典-英文字典  2005-2009