Viewing 15 posts - 901 through 915 (of 5,356 total)
See if you can utilize this
USE NORTHWIND
GO
DECLARE @myCol VARCHAR(10)
SELECT
@myCol = DATA_TYPE
FROM
INFORMATION_SCHEMA.COLUMNS
WHERE
TABLE_NAME = 'Orders'
AND
COLUMN_NAME = 'OrderDate'
SELECT @myCol AS MySearchedDatatpye
MySearchedDatatpye
------------------
datetime
(1 row(s) affected)
February 23, 2005 at 7:35 am
Does this help?
UPDATE Islem_ana
set HASBORC=SELECT SUM(HASBORC) + (@GIRILEN_MIKTAR * @GIRILEN_MILYEM/1000) + (@GIRILEN_MIKTAR * @GIRILENISCILIK)
from Islem_ana where HESAP_NO=@HESAP_NO and fisno=@FISNO and tariH=@TARIH AND satirno=@SATIRNO
Might need some parenthesis...
February 23, 2005 at 7:07 am
Here I found it:
http://www.google.de/search?q=Virginia+Arrests+Man+for+Spam+&hl=de&lr=&start=10&sa=N
February 23, 2005 at 6:30 am
Now, if I understand this correct:
UPDATE MYTABLE set LASTDEBT=LASTDEBT + (@ENTERED_QTY* @ENTERED_UNIT/1000) + (@ENTERED_QTY * @ENTEREDISC) from MYTABLE where ACCOUNT_NO=@ACCOUNT_NO and fisno=@FISNO and myDATE=@myDATE AND LINENO=@LINENO
However, this...
February 23, 2005 at 5:36 am
Why are you preparing the SQL string to be executed in your client code anyway? Why don't you use a stored procedure here?
Piggy-backing on Habib, this should be interesting:
February 23, 2005 at 3:24 am
I would be interested to know, where you've read about this 1 TB limitation.
Anyway, see if this links help:
http://www.microsoft.com/technet/community/chats/trans/sql/sql0326.mspx
http://www.microsoft.com/sql/techinfo/administration/2000/scalability.asp
February 23, 2005 at 2:28 am
See if this helps:
http://www.microsoft.com/technet/prodtechnol/sql/2000/maintain/incbulkload.mspx
Personally, and without knowing the background of the question I would be more concerned with what happens in the case of disaster than with some space...
February 23, 2005 at 2:21 am
Wasn't there recently a sentence where they send some American to jail for sending Spam?
February 23, 2005 at 2:10 am
To piggy-back on this RAID 5 thing, read closely through this: http://www.baarf.com/
February 23, 2005 at 2:04 am
Yes, there are definitely more than one way to skin that cat.
Good catch on the temp table method, PW. Have you considered making...
February 23, 2005 at 2:00 am
What would the difference between the CreateCustomer proc and the InsertCustomerRecord proc?
February 22, 2005 at 8:21 am
Have you read the link I've posted? It doesnt mention a cursor, unless I am mistaken.
February 22, 2005 at 7:51 am
Sure, this can be done via a cursor, but why?
http://sqljunkies.com/WebLog/amachanic/archive/2004/11/10/5065.aspx
February 22, 2005 at 7:36 am
YES, I would like to use the ISO 8601-standard, but HOW?
This might be a start: http://www.google.com/search?q=ISO%208601
February 22, 2005 at 7:32 am
the ubiquitous Frank and I were talking ...
It doesn't look that way at my home
February 21, 2005 at 7:53 am
Viewing 15 posts - 901 through 915 (of 5,356 total)