saras
-
3 votes
saras
shared this idea and gave it 3 votes
·
-
207 votes
jeremym1234
responded
We have some ideas on this, but would welcome any ideas or comments on what kind of functionality and utilties you would like to see.
saras
commented
·
We can detect some problem but sometimes we can not fix it.
- a memo corrupt: we must export to a new table
- an invalid date: we must edit it
- an invalid value: we cannot restructure it if an invalid value found in two or more field. we must edit it one by one before restructure it Or we must use FoxPro to restructure it.// detect table's problem
TRY
DROP TABLE #tmp;
CATCH ALL
END;SELECT * INTO #tmp FROM any_table;
// detect field's problem
TRY
DROP TABLE #tmp;
CATCH ALL
END;SELECT any_field INTO #tmp FROM any_table;
// detect record's problem for particular field
TRY
DROP TABLE #tmp;
CATCH ALL
END;SELECT TOP x any_field INTO #tmp FROM any_table;
saras
gave this 2 votes
·
-
3 votesdeclined ·
jeremym1234
responded
On the SQL menu select “table passwords”, enter passwords for the tables, then run your query.
saras
commented
·
It show only for 'Browse for Directory...' connection, not for 'Browse for Dictionary File...' connection.
I request the same feature for 'Browse for Dictionary File...' connection.
saras
commented
·
Please, don't decline my feedback
saras
shared this idea and gave it 3 votes
·
saras
commented
·
Vote it
-
2 votes
saras
shared this idea and gave it 1 vote
·
-
20 votes
saras
gave this 1 vote
·
-
27 votes
saras
gave this 1 vote
·
-
45 votes
saras
gave this 1 vote
·
We can encrypt/decrypt/restructure it with TADSTable in not Server-Side Alias dictionary. In Server-Side Alias dictionary we cannot do that.
We use a free table for a higher security than an admin.