Click here to Skip to main content
15,886,199 members
Home / Discussions / Database
   

Database

 
AnswerRe: show duplicates client within 28 days Pin
Frank Kerrigan13-Sep-05 3:00
Frank Kerrigan13-Sep-05 3:00 
QuestionManipulating the DataSet Index Pin
watagal12-Sep-05 13:16
watagal12-Sep-05 13:16 
AnswerRe: Manipulating the DataSet Index Pin
Frank Kerrigan13-Sep-05 3:05
Frank Kerrigan13-Sep-05 3:05 
QuestionMSDE Pin
Ahsan Askare12-Sep-05 1:56
Ahsan Askare12-Sep-05 1:56 
AnswerRe: MSDE Pin
rwestgraham12-Sep-05 6:21
rwestgraham12-Sep-05 6:21 
AnswerRe: MSDE Pin
Luis Alonso Ramos12-Sep-05 14:14
Luis Alonso Ramos12-Sep-05 14:14 
QuestionThe question about DataView.Filter Pin
dreamwinter11-Sep-05 19:24
dreamwinter11-Sep-05 19:24 
AnswerRe: The question about DataView.Filter Pin
miah alom12-Sep-05 3:13
miah alom12-Sep-05 3:13 
Internally the following query is generated.

select * from Table1 where ID like '%1'

like operator is spported only for string type columns eg ( varchar)

So the RowFilter is incorrect.


The correct query for finding all the ID's ending with 1 is

select * from TestTable where (convert(int,ID) % 10 = 1)
QuestionHelp !!! Pin
WDI10-Sep-05 22:14
WDI10-Sep-05 22:14 
AnswerRe: Help !!! Pin
Colin Angus Mackay11-Sep-05 0:34
Colin Angus Mackay11-Sep-05 0:34 
GeneralRe: Help !!! Pin
WDI11-Sep-05 0:49
WDI11-Sep-05 0:49 
GeneralRe: Help !!! Pin
Colin Angus Mackay11-Sep-05 1:46
Colin Angus Mackay11-Sep-05 1:46 
QuestionStored Procedure - Verification Pin
phokojoe10-Sep-05 2:35
phokojoe10-Sep-05 2:35 
AnswerRe: Stored Procedure - Verification Pin
Colin Angus Mackay10-Sep-05 5:04
Colin Angus Mackay10-Sep-05 5:04 
GeneralRe: Stored Procedure - Verification Pin
phokojoe10-Sep-05 23:56
phokojoe10-Sep-05 23:56 
GeneralRe: Stored Procedure - Verification Pin
Colin Angus Mackay11-Sep-05 0:15
Colin Angus Mackay11-Sep-05 0:15 
GeneralRe: Stored Procedure - Verification Pin
Colin Angus Mackay11-Sep-05 0:21
Colin Angus Mackay11-Sep-05 0:21 
GeneralRe: Stored Procedure - Verification Pin
phokojoe11-Sep-05 22:11
phokojoe11-Sep-05 22:11 
GeneralRe: Stored Procedure - Verification Pin
Colin Angus Mackay12-Sep-05 1:55
Colin Angus Mackay12-Sep-05 1:55 
QuestionFree Databases Pin
Robert M Greene9-Sep-05 16:56
Robert M Greene9-Sep-05 16:56 
QuestionSQL Restore Mystery Pin
mjackson119-Sep-05 13:06
mjackson119-Sep-05 13:06 
AnswerRe: SQL Restore Mystery Pin
Rahul Walavalkar13-Sep-05 0:11
Rahul Walavalkar13-Sep-05 0:11 
QuestionTimeout Expired The timeout period elapsed prior to completion Pin
Jaffer Mumtaz9-Sep-05 1:22
Jaffer Mumtaz9-Sep-05 1:22 
AnswerRe: Timeout Expired The timeout period elapsed prior to completion Pin
OMalleyW9-Sep-05 1:51
OMalleyW9-Sep-05 1:51 
AnswerRe: Timeout Expired The timeout period elapsed prior to completion Pin
miah alom9-Sep-05 5:39
miah alom9-Sep-05 5:39 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.