Viewing 15 posts - 571 through 585 (of 662 total)
Try sp_procedure_params_rowset
Article at : http://p2p.wrox.com/archive/activex_data_objects/2002-02/4.asp
February 18, 2003 at 7:37 pm
Wild guess : Query Analyser -> Tools -> Options -> Results -> Max Char / Col
February 18, 2003 at 1:37 pm
BOL 2000 : Every Microsoft® SQL Server™ 2000 database has a transaction log that records all transactions and the database modifications made by each transaction.
1)Recovery of individual transactions.
2)Recovery of...
February 17, 2003 at 2:54 pm
Try
"Select convert(float, pm_valor) from ger_pm
where pm_id = 'PM_PRPIS' And IsNumeric(pm_valor)=0"
February 13, 2003 at 6:44 pm
Try
"Select pm_valor from ger_pm
where pm_id = 'PM_PRPIS' And IsNumeric(pm_valor)=0"
February 13, 2003 at 6:44 pm
BOL 2000:
Note In client applications, some display formats do not translate appropriately for all locales. If you are supporting multiple locales or a locale different than that of the...
February 12, 2003 at 5:13 pm
Look at
Select GETUTCDATE(),GetDate()
BOL 2000:
GETUTCDATE
Returns the datetime value representing the current UTC time (Universal Time Coordinate or Greenwich Mean Time). The current UTC time is derived from the current local...
February 11, 2003 at 8:45 pm
To answer the original question I think a stored procedure! May start looking at XML with a structure similar to question,answer, etc. which get passed to and parsed in a...
February 4, 2003 at 3:08 pm
Sorry I miss the "check boxes" part.
I think I will still try and stick to the normalized idea, in other words insert three records for question xx, a value for...
February 4, 2003 at 3:03 pm
On Error Resume Next
if Not IsNull(evdate) And IsDate(rs("press_date").value) Then
evdate=monthname(month(evdate)) & " " & day(evdate) & " " & year(evdate)
Else
evdate=""
end if
Syntax may be wrong for vbscript!
February 4, 2003 at 2:47 pm
Can the asp page not pass the question number back together with the answer, then you only have to store the answer number/id and the question id?
February 4, 2003 at 2:37 pm
February 4, 2003 at 2:00 pm
Rather than Exists and select a few columns just do a Select '1'
Secondly why a flat file, how many records in the table?
February 4, 2003 at 1:25 pm
I'll go with the VB clan.
Use split to get to arrays, insert local recordset and do batch insert to SQL.
How about DTS?
February 4, 2003 at 1:16 pm
Viewing 15 posts - 571 through 585 (of 662 total)