Viewing 15 posts - 196 through 210 (of 1,186 total)
The columns that you are trying to write '51,00', '0', '102,00' are set-up as MONEY. They will not auto-change '51,00' from a CHARACTER into MONEY.
You can either do 51, 0,...
July 13, 2005 at 6:56 am
Research ADODB parameters. There is decent help for them online and in the HELP file.
July 13, 2005 at 6:51 am
Why not create a table that first examines the table you are going to pull data from and populate a MAX VARIABLE with the # of records.
Then create a TEMP...
July 13, 2005 at 5:45 am
If you are storing the SOLD as DATETIME the below may help
DECLARE @VAR DATETIME
SET @VAR = '2005-07-13 05:42:08.070'
SELECT CONVERT(CHAR(10), @VAR, 101) + SPACE(1) + LEFT(CONVERT(CHAR(8), @VAR, 108), 2) + ':00'...
July 13, 2005 at 5:39 am
I would research @@IDENTITY/SCOPE_IDENTITY() in BOL. Partial from BOL
SELECT SCOPE_IDENTITY() AS [SCOPE_IDENTITY]
GO
SELECT @@IDENTITY AS [@@IDENTITY]
GO
--Here is the result set.
SCOPE_IDENTITY
4
/*SCOPE_IDENTITY returned the last identity value in the same scope, which was...
July 13, 2005 at 5:27 am
You don't need to apply any service packs or hotfixes for this environment. Luckily, AMD 64 bit handles 32 bit all by itself (AFAIK there is nothing you could anyway). ...
July 12, 2005 at 1:10 pm
Start with MS Inside SQL Server 2000.
Other books to read: Sit at local bookstore. Grab books about SQL. Whichever ones don't put you to sleep and hold your interest buy.
July 12, 2005 at 1:06 pm
Without knowing the motivation of the poster of the above quote I can only hazard the following:
Access is GREAT at providing quick, dirty, small applications rapidly. I don't think that...
July 12, 2005 at 5:16 am
I actually didn't realize how close I was guess tomorow will be the big K...
July 11, 2005 at 8:15 pm
I apologize for my narrow thinking on this one Remi. I ASSumed US-ONLY based on the sample. You are absolutely correct that my sample WOULD NOT wokr in Europe.
July 11, 2005 at 5:58 pm
David,
You are absolutely correct. IF you UPDATE/INSERT spaces into a VARCHAR field THEN they will be there. I was thinking more in terms of UPDATE/INSERT "Smith" which would not...
July 11, 2005 at 5:56 pm
Why not use UPDATE table SET Column = LEFT(Column, 5) ?
July 11, 2005 at 11:31 am
Can you post the field definition? That may go a long way of explaining the problem. If it is CHAR then you will ALWAYS have spaces if VARCHAR then you...
July 11, 2005 at 5:55 am
short answer is CRYSTAL is a HUGE pain in the @&$&Y and NO, unfortunately, not.
July 8, 2005 at 10:26 am
Viewing 15 posts - 196 through 210 (of 1,186 total)