Viewing 15 posts - 4,831 through 4,845 (of 5,103 total)
1. Goto this REgKey and update the path for the .mdw
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Jet\4.0\Engines\SystemDB2. Create an Access linked Server
3. Set up Permissions on the Linked Server Security Tab
3. Use LinkedServerName...AccessTableName
4. If you use that...
* Noel
January 7, 2004 at 11:32 am
Increase the Max Errors to an "acceptable"
number
AND
Bulk Insert into an staging the File then
Compare the two to know what's missing!
if you want the...
* Noel
January 7, 2004 at 11:17 am
you could allow changes to the data only through SP and Hadle that IN the SPs !!!
HTH
* Noel
January 7, 2004 at 9:49 am
DO NOT use @@dbts as you would SCOPE_IDENTITY() !!
AFAIR @@dbts is NOT Transactionaly safe!!
ALL MS suggestions are based on RE-Reading the new TS column if you need to update again...
* Noel
January 7, 2004 at 9:45 am
Yes the issue is definetly that the PAGE is not downloaded in full and the editor is NOT enabled until it happens
PS: I have lost a lot of post because...
* Noel
January 5, 2004 at 6:00 pm
It does not appear to be a code Error in the ActiveX Script so you should try to apply SQL Server SP3a!!
It does not make sense that you get an...
* Noel
January 5, 2004 at 5:29 pm
SCRIPT OUT the TABLES with ALL dependent object Seleted!
then Run the Script on the Destination! (don't select copy data)
(DTS WIZARD)
* Noel
January 5, 2004 at 3:29 pm
- Are you running any scripts?
- what Patch level is your Server at?
- can you let it run with the Full file and in the option task select source rows error
-...
* Noel
January 5, 2004 at 3:22 pm
try:
ALTER TABLE tbl_open_order
ADD rownum AUTOINCREMENT (1,1)
OR
ALTER TABLE tbl_open_order
ADD rownum IDENTITY (1,1)
OR
ALTER TABLE tbl_open_order
ADD rownum Counter (1,1)
* Noel
January 5, 2004 at 3:00 pm
Can you check the Source ROW at which is reporting the Error?
* Noel
January 5, 2004 at 2:51 pm
Use Information_schema views
Ex:
SELECT * FROM
INFORMATION_SCHEMA.COLUMNS
WHERE TABLE_NAME ='Your Table'
* Noel
January 5, 2004 at 11:39 am
January 5, 2004 at 11:31 am
USE @@PROCID for that too
CREATE FUNCTION fn_1()
RETURNS int
AS
BEGIN
DECLARE @data AS int
SELECT @data = @@PROCID
RETURN @data
END
* Noel
January 5, 2004 at 11:10 am
Viewing 15 posts - 4,831 through 4,845 (of 5,103 total)