Главная страница
Top.Mail.Ru    Яндекс.Метрика
Текущий архив: 2003.09.11;
Скачать: CL | DM;

Вниз

uniqueidentifier   Найти похожие ветки 

 
MakNik ©   (2003-08-19 15:58) [0]

Подскажите как корректно работать с типом uniqueidentifier в MSSQL? Как его генерировать? копировать?


 
ZrenBy ©   (2003-08-19 16:01) [1]

newid()
куда копировать ?


 
MakNik ©   (2003-08-19 16:33) [2]

А как сделать чтобы этот процесс происходил автоматически (чтобы добавляя записи генерировался ID)?


 
ermserg ©   (2003-08-19 16:37) [3]

CREATE TABLE t1
(f1 uniqueidentifier NOT NULL DEFAULT newid())


 
MakNik ©   (2003-08-19 16:39) [4]

newid()- это что??? можно подробнее, а то я совсем чайник...


 
sniknik ©   (2003-08-19 17:03) [5]

почитай BOL (ставится вместе с MSSQL) там все описано

оттуда

NEWID
Creates a unique value of type uniqueidentifier.

Syntax
NEWID ( )

Return Types
uniqueidentifier

Examples
A. Use the NEWID function with a variable
This example uses NEWID to assign a value to a variable declared as the uniqueidentifier data type. The value of the uniqueidentifier data type variable is printed before the value is tested.

-- Creating a local variable with DECLARE/SET syntax.
DECLARE @myid uniqueidentifier
SET @myid = NEWID()
PRINT "Value of @myid is: "+ CONVERT(varchar(255), @myid)

Here is the result set:

Value of @myid is: 6F9619FF-8B86-D011-B42D-00C04FC964FF

Note The value returned by NEWID is different for each computer. This number is shown only for illustration.

.................................



Страницы: 1 вся ветка

Текущий архив: 2003.09.11;
Скачать: CL | DM;

Наверх




Память: 0.47 MB
Время: 0.02 c
1-33549
JS
2003-08-29 11:06
2003.09.11
DLL_DETACH


6-33705
Вопрос
2003-07-09 15:33
2003.09.11
как включить картинки у Ie


6-33717
TGrey
2003-07-09 21:45
2003.09.11
Как определить размер файла на сервере


7-33827
needle
2003-06-27 10:19
2003.09.11
Пользователи и домены


1-33617
Layner
2003-09-01 08:59
2003.09.11
Как по ESC закрыть форму, причем не важно, где находится курсор