search for: uniqueidentifi

Displaying 20 results from an estimated 20 matches for "uniqueidentifi".

Did you mean: uniqueidentifier
2006 May 30
0
SQLServer''s uniqueidentifier in migrate script
Hi all, as i''m trying to do it the rails way i have defined my db structure in the migrate files first. now, is it possible to define the id as :uniqueidentifier and rowguid in the script? -- Posted via http://www.ruby-forum.com/.
2006 Mar 31
0
acts_as_taggable doesn''t work with uniqueidentifier
Hi all, it seems like the acts_as_taggable is not capable to work with uniqueidentifier as the datatype of the primary key in the tags table. however, it works like a charm with int and autoincrement. could that be fixed any time soon? -- Posted via http://www.ruby-forum.com/.
2009 Jan 13
3
postfix - dovecot - ldap
...t-ldap.conf hosts = localhost dn = uid=dovecot,ou=services,dc=abcshop,dc=at dnpass = secret ldap_version = 3 base = ou=people,dc=abcshop,dc=at user_attrs = mailHomeDirectory=home,mailUidNumber=uid,mailGidNumber=gid,mailStorageDirectory=mail user_filter =(&(objectClass=PostfixBookMailAccount)(uniqueIdentifier=%u)) pass_attrs = uniqueIdentifier=user,userPassword=password pass_filter = (&(objectClass=PostfixBookMailAccount)(uniqueIdentifier=%u)) default_pass_scheme = PLAIN dovecot.conf: protocols = imap imaps disable_plaintext_auth = no ssl_cert_file = /usr/local/etc/dovecot/mail.example.com-ce...
2004 Dec 03
2
[LLVMdev] [Fwd: Updated LLVM Visual Studio project files]
...ManagedWrapperGeneratorTool"/> > </Configuration> > </Configurations> > <References> > </References> > <Files> > <Filter > Name="Source Files" > Filter="cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx" > UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"> > <File > RelativePath="..\..\lib\Target\X86\X86AsmPrinter.cpp"> > </File> > <File > RelativePath="..\..\lib\Target\X86\X86CodeEmitter.cpp"> > </File> > &...
2004 Dec 03
0
[LLVMdev] [Fwd: Updated LLVM Visual Studio project files]
...gt; </Configuration> > > </Configurations> > > <References> > > </References> > > <Files> > > <Filter > > Name="Source Files" > > Filter="cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx" > > UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"> > > <File > > RelativePath="..\..\utils\TableGen\AsmWriterEmitter.cpp"> > > </File> > > <File > > RelativePath="..\..\utils\TableGen\CodeEmitterGen.cpp"> &gt...
2007 Sep 04
2
Use of uniqueidentifer type for primary key?
I''m working on a legacy SQL db. It is distributed, to they are using the uniqueidentifier type for the primary key. At first, at least, I won''t be updating records, but I''m seeing a lot of negativity about using anything other than incrementing integers for the pk--which are obviously inadequate for this environment. It is enough to use set_primary_key? Do I need...
2007 Dec 27
0
SAS to R - if you have SAS 8.2+
...elete old csvdata file file.remove(csvdata) # delete old coldef file file.remove(coldef) # convert SAS DATETIME format into native R date (POSIXct) x <- which(scf=="date") sdf[,x] <- as.data.frame(strptime(sdf[,x], "%d%b%Y:%H:%M:%S")) # cleanup SAS objects obSAS.UniqueIdentifier <- obSAS[["UniqueIdentifier"]] obWSM.Workspaces$RemoveWorkspaceByUUID(obSAS.UniqueIdentifier) obSAS$Close() return(sdf) } # example call # not run # test<- import.sas.data("path/to/data","sasdatafile") ___________________________________________...
2016 Feb 10
3
Question about an error we're now starting to get on LLVM 3.8.0rc2since
On Wed, Feb 10, 2016 at 10:50 AM, Mehdi Amini via llvm-dev <llvm-dev at lists.llvm.org> wrote: >>> Is this change indeed intended as a visible API change to source code generating references to argument list values? If so, can you point me to a description of how I should change our code? Should I bug someone else about this problem? Should this API change be documented in
2007 Nov 28
0
Where to override ActiveRecord::ConnectionAdapters::SQLServerAdapter?
I''m working on an existing global database running on MS SQL Server. The appropriate primary key is uniqueidentifier, so I want to set ActiveRecord::ConnectionAdapters::SQLServerAdapter#native_database_types[:primary_key] = "uniqueidentifier NOT NULL newid() PRIMARY KEY". Obviously, I need to override the native_database_types definition, but I really don''t know where I should put the code s...
2013 Mar 12
0
flac 1.3.0pre2 pre-release
...------------ next part -------------- diff -rupN a/src/share/grabbag/grabbag_static.vcproj b/src/share/grabbag/grabbag_static.vcproj --- a/src/share/grabbag/grabbag_static.vcproj Wed Jan 2 13:49:55 2013 +++ b/src/share/grabbag/grabbag_static.vcproj Tue Mar 12 09:46:01 2013 @@ -163,6 +163,10 @@ UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}" > <File + RelativePath=".\alloc.c" + > + </File> + <File RelativePath=".\cuesheet.c" > </File>
2007 Aug 30
1
Using NID_x500UniqueIdentifier as ssl_username_from_cert
Hi, please have a look at the attached patch for dovecot-1.0.3 These patch modifies ssl_proxy_get_peer_name() to use the NID_x500UniqueIdentifier as username instead of NID_commonName. The reason is, that the Common Name doesn't have to be unique for the whole mailserver. Example; in germany a lot of people got the first name "Andreas" and the last name "Schulz". Therefore a lot of certificates exists with subject...
2010 May 20
0
RODBC: sqlSave leave primary key and other columns null
I have an existing table, and I am trying to use sqlSave to append additional rows to this database. I omit the primary key, which is a uniqueidentifier type (MS SQL), so that the database can populate that field. However, I get the following error: > sqlSave( ch, result, tablename=thetablename, append=TRUE, rownames=FALSE, colnames=FALSE ) Error in odbcUpdate(channel, query, mydata, coldata[m, ], test = test, : missing columns in &...
2005 Aug 15
0
RE: has_many_belongs_to_many insert issues [CLOSED]
...roduct < ActiveRecord::Base has_many_belongs_to_many: categories end With the usual SQL tables (i.e., categories, products, categories_products). NOTE: I AM USING MICROSOFT SQL SERVER -- that might be the source of my issues... All my ids are int identity(1, 1) not null in SQL. I quit using uniqueidentifier as Rails gets very confused. I cannot add a Product<->Category relationship via Rails, like: aProduct = Product.find(41234) P.categories << aCategory It throws an exception coming from SQL: Execute OLE error code:80040E14 in Microsoft OLE DB Provider for SQL Server Line...
2010 Jun 25
0
activerecord + ms sql.. rowguid field for merge replication breaking inserts
...sql server database. runnign the replication wizard changed my tables by adding a ''rowguid'' column and now activerecord breaks with the following error when i try to create a new record: [unixODBC][FreeTDS][SQL Server]Conversion failed when converting from a character string to uniqueidentifier.: INSERT INTO [companies] ([created_at], [name], [updated_at], [rowguid]) VALUES(''2010-06-25 20:23:06.032'', ''test'', ''2010-06-25 20:23:06.032'', ''newsequentialid('') what are my alternatives to get this to work again? -- You...
2013 Mar 11
2
flac 1.3.0pre2 pre-release
Janne Hyv?rinen wrote: > With the sources as they are compiling produces these errors (this on > MSVC 2012 SP1 Express): > > Error 1 error LNK2001: unresolved external symbol > _FLAC__bitreader_bits_left_for_byte_alignment > G:\Programming\flac-1.3.0pre2\src\flac\libFLAC_static.lib(stream_decoder.obj) Ben Alison is working on tthis. Lets allow that work to come to a
2004 Nov 15
0
[LLVMdev] Fixes for windows version
...1.2 > diff -u -r1.2 Support.vcproj > --- win32/Support/Support.vcproj 6 Nov 2004 17:07:36 -0000 1.2 > +++ win32/Support/Support.vcproj 15 Nov 2004 08:56:40 -0000 > @@ -183,6 +183,111 @@ > Name="Header Files" > Filter="h;hpp;hxx;hm;inl;inc;xsd" > UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}"> > + <File > + RelativePath="..\..\include\llvm\Support\AIXDataTypesFix.h"> > + </File> > + <File > + RelativePath="..\..\include\llvm\Support\Annotation.h"> > + </File&g...
2004 Nov 15
2
[LLVMdev] Fixes for windows version
Hi, when I updated the sources today there were several small problems that stopped the windows version from compiling, here are the patches m. -------------- next part -------------- An embedded and charset-unspecified text was scrubbed... Name: win32patches.txt URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20041115/34634455/attachment.txt>
2006 Jan 20
47
SQL Server datetime error
i have a problem with the datetime format of rails. i am unable to save a dataset to the db. here''s the error message -- the original error message was in german, so i translated it -- i get: DBI::DatabaseError: Execute OLE error code:80040E07 in Microsoft OLE DB Provider for SQL Server Couldn''t convert a char-Datatype to datetime HRESULT error code:0x80020009
2013 Jan 13
4
Installing Dovecot on Gentoo
...em tls_key_file = /etc/ssl/private/mx0.roessner-net.de.key.pem tls_require_cert = hard debug_level = 7 base = ou=people,ou=it,dc=roessner-net,dc=de user_attrs = rnsMSQuota=quota_rule=*:storage=%$,rnsMSMailboxHome=home user_filter = (&(objectClass=rnsMSDovecotAccount)(|(rnsMSRecipientAddress=%u)(uniqueIdentifier=%u))) pass_attrs = rnsMSDeliverToAddress=user,userPassword=password pass_filter = (&(objectClass=rnsMSDovecotAccount)(|(rnsMSRecipientAddress=%u)(uniqueIdentifier=%u))(rnsMSEnableDovecot=TRUE)) iterate_attrs = rnsMSDovecotUser=user iterate_filter = (objectClass=rnsMSDovecotAccount) default_pa...
2005 Dec 06
4
BIG Samba howto for debian only.
Hi everybody, I made a pretty complete howto for samba on debian servers. This howto covers samba + ldap + cups + recycle bin + samba-vscan + phpldapadmin + ACL + Extended Attributes. this howto is also based on the idealx howto If you do this setup, you should be able to use the NT4 Usermanager, setup Point en Print Printing. set rights from explorer etc. other nice tools is ldapadmin (