Viewing 15 posts - 556 through 570 (of 662 total)
I think he is talking about a hierarchical structure. A father / son relationship table of some sort, bill of materials. 1 Bicycle -> 1 frame -> two wheels ->...
March 20, 2003 at 9:13 pm
Saving a cpu cycle
Select Right(Convert(char(10),getdate(),103),7)
March 20, 2003 at 2:41 pm
Can you post a bit more info like the actual error message,code and the statement executing! Assume both(old,new) SQL 2000?
March 18, 2003 at 1:43 pm
Look in SQL Server Books Online 2000 and search for 'Deterministic and Nondeterministic Functions' The problem seems to be the determinism of the cast/convert function. If you use the convert/cast...
March 17, 2003 at 5:16 pm
Try and change '20030101 00:00:00:000' to Cast('1 Jan 2003 00:00:00:000' as SmallDateTime)
March 17, 2003 at 3:49 pm
Can you post the script indicating which columns are of dates and variants types?
March 17, 2003 at 2:37 pm
Think I missed the point
Dim fso As New FileSystemObject
Dim folder As folder
Dim file As...
March 11, 2003 at 5:05 pm
March 11, 2003 at 2:53 pm
Alternative is a form of character stuffing but if will depends on your app / enivronment, 2 byte extra per row, instead trigger to add one char,...
March 4, 2003 at 1:41 pm
BOL 2000:
LEN
Returns the number of characters, rather than the number of bytes, of the given string expression, excluding trailing blanks.
DATALENGTH
Returns the number of bytes used to represent any expression.
Select len('A...
March 3, 2003 at 6:29 pm
Played with the problem:
Adding a length column for the two PK columns.
Ok assumption no spaces in front
Create Table Testing(A varchar(10) not null,B varchar(10) not null,
C tinyint...
March 3, 2003 at 5:55 pm
See online help for ANSI_PADDING
March 3, 2003 at 4:58 pm
Try ROUND function.
BOL 2000:
Returns a numeric expression, rounded to the specified length or precision.
February 19, 2003 at 5:08 pm
No, normally do it on the client with Crystal or Excel.
February 19, 2003 at 4:52 pm
Viewing 15 posts - 556 through 570 (of 662 total)