Setting Up Web Syncronization Wizard

Dec 6, 2007



Could someone please confirm the best way for me to set up the WSW. Having installed the Sql 2005 CE Server Agent and configured WSW I can now use the Url http://branch.companyname.co.uk/rdatest/sqlcesa30.dll and get the Server Agent to return a string. So far so good I can use the Pda to connect to my IIS Server. I have set the WSW for Anonymous access using the IUSR account for simplicity. My Sql 2005 Database is located on a separate server which I can locate from my IIS server using the following connection string.
"server=172.18.22.222; database=Audit; uid=steve; pwd=letmein"
My Sql 2005 database 'Audit' uses Sql Authentication. What considerations do I need to make in my WSW setup for
1. Anonymous access to IIS Server
2. Sql Authentication on separate Sql server
3. Will the connection string work in my SqlCeRemoteDataAccess instance when attempting RDA Pull method
4. What security access do I need to allow for in my Sql 2005 database access rights if any

Am I also right in thinking that for IIS basic access with Sql Authentication I need to provide Internetlogin and Internetpassword values for the properties of the SqlCERemoteDataAccess instance? If so do we enter the login and password for the IIS server or the Sql 2005 database server? The Sql Database login and password is passed through my connection string in my RDA.Pull method.

View 3 Replies


ADVERTISEMENT

IS IT A Challenge?(cOnfigurE A VIrtuaL DIrectorY FOR SYncronizatioN WIthouT WEB SYnchronizatioN WIzarD)

May 25, 2007



if you R Right Person Help Me Please.....

View 1 Replies View Related

Tool For Syncronization Databases On 2 Servers

Aug 15, 2005

Hello, I need a tool for management ms sql: compare list of databases on 2 servers (not structure and/or data of 2 databases), copy from one server to second new databases, delete from the second server ... Not to propose Copy Wizard.
Thanks

View 4 Replies View Related

Invisible Rows After Failed Syncronization

Nov 9, 2006

Publisher: SQL Server 2000 SP4
Subscriber: SQL Server 2005 Mobile Edition

Sometimes, after a failed merge replication(due to communication error) some rows on the subscriber became invisible for the publisher.

I've reproduced a case:

[START Short Version]
All rows inserted between a comm failed sync and a fine sync became invisible.
This seems to be caused because the subscriber keeps generating rows with the same generation number and the publisher doesn't look for this generation anymore.
[END Short Version]

[START Detailed case]
STEP 0: INITIAL STATE
Publisher
Orders Table
EMPTY

Subscriber
NO DATABASE


STEP 1: After FIRST SYNC and INSERTING 2 Orders

Publisher

Orders Table

EMPTY



Subscriber

Orders Table
OrderId __sysIG __sysCG __sysMC000001 4 4 81000002 4 4 81


STEP 2: After SECOND SYNC


Publisher


Orders Table

OrderId



000001
000002



Subscriber


Orders Table

OrderId __sysIG __sysCG __sysMC

000001 4 4 80

000002 4 4 80


STEP 3: INSERT ANOTHER ORDER



Subscriber



Orders Table


OrderId __sysIG __sysCG __sysMC


000001 4 4 80


000002 4 4 80



000003 6 6 81



STEP 4: After THIRD SYNC (with comm error)
Error: [NativeError:28037][HRESULT:-2147012889]->[A request to send data to the computer running IIS has failed. For more information, see HRESULT.]
When: Error happens provoked after sending from Subscriber to Publisher but before ending syn process.
Publisher




Orders Table



OrderId





000001



000002



000003







Subscriber




Orders Table



OrderId __sysIG __sysCG __sysMC



000001 4 4 80



000002 4 4 80




000003 6 6 81
Note: Publisher has the row but subscriber keeps the state in 81.



STEP 5: INSERT ANOTHER ORDER (BEFORE A GOOD SYNC)




Subscriber




Orders Table



OrderId __sysIG __sysCG __sysMC



000001 4 4 80



000002 4 4 80




000003 6 6 81




000004 6 6 81
Note: Orders 000003 and 000004 have the same system info



STEP 6: After FOURTH SYNC
Publisher






Orders Table





OrderId







000001





000002





000003











Subscriber






Orders Table





OrderId __sysIG __sysCG __sysMC





000001 4 4 80





000002 4 4 80






000003 6 6 81







000004 6 6 81

Note: Even with a fine merge process Publisher didn't get the 000004 row and the Subscriber didn't update the __sysMC




STEP 7: INSERT ANOTHER ORDER





Subscriber





Orders Table




OrderId __sysIG __sysCG __sysMC




000001 4 4 80




000002 4 4 80





000003 6 6 81





000004 6 6 81





000005 8 8 81




STEP 8: After FIFTH SYNC

Publisher







Orders Table






OrderId








000001






000002






000003
000005













Subscriber







Orders Table






OrderId __sysIG __sysCG __sysMC






000001 4 4 80






000002 4 4 80







000003 6 6 81








000004 6 6 81






000002 8 8 80


Note: Data from generation 8 merge correctly, but data from generation 6 keeps invisible to publisher.





STEP 9: DUMMY UPDATE ON GEN 6 ROWS






Action: I made a non relevant update to force the Subscriber update the generation.
Subscriber






Orders Table





OrderId __sysIG __sysCG __sysMC





000001 4 4 80





000002 4 4 80






000003 6 10 81






000004 6 10 81






000005 8 8 80

Note: sysCG get its value updated correctly.





STEP 10: After SIXTH SYNC


Publisher








Orders Table







OrderId









000001







000002







000003
000004

000005















Subscriber








Orders Table







OrderId __sysIG __sysCG __sysMC







000001 4 4 80







000002 4 4 80








000003 6 6 80








000004 6 6 80







000002 8 8 80



Note: Data merges correctly.






[END Detailed case]

I could code a system that checks all the publication tables and updates all the last generation rows in case of communication error but i would really like to avoid doing it.

I don't know if I'm missing something or if this is a bug or a known issue.

This is a big problem for me because communication errors on cellular phone based connection are quite common and users keep working even if there's an error.

Any comment will be appreciated.

View 6 Replies View Related

Application Hangs When Saving Data After A Syncronization

Oct 5, 2007

Hi! I am developing a CF 2.0 application for WM 6.0. In the application I'm doing a replication between a Sql Server 2005 database and a Sql Server 2005 Compact Edition database. When I'm trying to syncronize the databases for the first time, e.g., creating a new database with AddSubscription(AddOption.CreateDatabase)I cannot do a save afterwards the synchronization procedure. The synchronization works just fine and I get the right data to my device and so, but when I try to a save, the database hangs doing the commit().

If I'm on the otherhand restarts the application and then do a ReinitializeSubscription(true), e.g., doesn't not create a new database with AddSubscription(AddOption.CreateDatabase), and calls Synchronize(), everything works just fine. Anyone who has an explanation of this? (I do a Dispose() each time).

View 1 Replies View Related

I Want To Test Break Of Mirror Db When Syncronization No Longer Possible

Dec 4, 2006

Hi

I am testing high performance mirror on my local PC

mirroring set on db Northwind between default and named instance

on default (principal) server have few jobs

1. insert into table A,run every 1 minute

2. backup log of Northwind ,run every 10 minute

3. stop named instance ,run every 15 minutes

4. start named instance ,run every 20 minutes

After each stop/ start mirrored db very quickly synchronized .

I want to test break of mirror db when synchronization no longer possible

any suggestions ?

We want to place 70 GB db in mirror 300 km away and I want test everything

All possible break scenario

View 1 Replies View Related

Importing Data From Oracle 8i/9i To SQL Server 2005 Using SQL Server Import And Export Wizard (AKA DTS Wizard)

Oct 20, 2006

Hi All,

I have become frustrated and I am not finding the answers I expect.

Here's the gist, we support both Oracle and SQL for our product and we would like to migrate our Clients who are willing/requesting to go from Oracle to SQL. Seems easy enough.

So, I create a Database in SQL 2005, right click and select "Import Data", Source is Microsoft OLE DB Provider for Oracle and I setup my connection. so far so good.

I create my Destination for SQL Native Client to the Database that I plan on importing into. Still good

Next, I select "Copy data from one or more tables or views". I move on to the next screen and select all of the Objects from a Schema. These are Tables that only relate to our application or in other words, nothing Oracle System wise.

When I get to the end it progresses to about 20% and then throws this error about 300 or so times:

Could not connect source component.
Warning 0x80202066: Source - AM_ALERTS [1]: Cannot retrieve the column code page info from the OLE DB provider. If the component supports the "DefaultCodePage" property, the code page from that property will be used. Change the value of the property if the current string code page values are incorrect. If the component does not support the property, the code page from the component's locale ID will be used.

So, I'm thinking "Alright, we can search on this error and I'm sure there's an easy fix." I do some checking and indeed find out that there is a property setting called "AlwaysUseDefaultCodePage" in the OLEDB Data Source Properties. Great! I go back and look at the connection in the Import and .... there's nothing with that property!

Back to the drawing board. I Create a new SSIS package and figure out quickly that the AlwaysUseDefaultCodePage is in there. I can transfter information from the Oracle Source Table to the SQL Server 2005 Destination Table, but it appears to be a one to one thing. Programming this, if I get it to work at all, will take me about 150 hours or so.

This make perfect sense if all you are doing is copying a few columns or maybe one or two objects, but I am talking about 600 + objects with upwards of 2 million rows of data in each!!

This generates 2 questions:
1. If the Import Data Wizard cannot handle this operation on the fly, then why can't the AlwaysUseDefaultCodePage property be shown as part of the connection
2. How do I create and SSIS Package that will copy all of the data from Oracle to SQL Server? The source tables have been created and have the same Schema and Object Names as the Source. I don't want to create a Data Flow Task 600 times.

Help!!!

View 8 Replies View Related

Setting Timeout In ASP.NET Vs Setting Timeout In SQL Server

Oct 22, 2007

In my ASP.NET app, I'm executing a stored procedure via a SQLCommand the searches a customer database. I believe the default timeout is 90 seconds. I'm curious of what happens to the SQL Server Stored Procedure after timing out from the ASP.NET application. Does it timeout at the same time or do you have to set up a value in SQL Server?

View 1 Replies View Related

DTS Wizard...help

Dec 23, 2006

I have downloaded SQL Server Express Service Pack 1, SQL Express Management, SQL Express Toolkit, as well at the DTS Wizard and installed all, looked for Program filesMicrosoft SQL Server90DTSBinn and it isn't tere, did a search on my cjomputer for DTSWizard.exe and cannot find it. Any suggestions? Thanks

View 1 Replies View Related

Dts Wizard

Aug 2, 2000

Here's the scenario: i've got Sql 6.5 server running on our network with about 6 databases.I have ran up another server on the network running sql 7,my
aim is to migrate from the 6.5 server all the databases...etc to the new server running SQL 7, is using the DTS wizard the best way for migration!!I have limited SQL experience and need some advice??I would be most grateful to all you sql gurus out there for any help

Cheers del.

View 1 Replies View Related

DTS Wizard

Apr 11, 2008



hi all,

i have a problem.. i tried installing Microsoft SQL Server 2005 Express Edition Toolkit so that i can have the DTS wizard to import my data. however, i have encountered some problem.

the following components that you chose to install are already installed on the machine. to view a report of available options and alternatives click on details
greyed out - workstation components and development tools 9.2.3042.00

therefore i can't complete the installation. anyone can help me?

thanks.

View 4 Replies View Related

SCD Wizard

Jun 21, 2006

I have created a dimension table for a star schema and included the following columns for treatment of historical changes:


[StartDate] datetime,
[EndDate] datetime,
[Current] varchar(5),
[IsInferred] bit
My Business key is code and the historical attribute is code_desc.

I run the wizard and nominate the Current attribute to be set to True or False. What should the type of this column be as it is not being populated ?

TIA,

Michael Morrissey.

View 1 Replies View Related

Upsizing Wizard

Oct 11, 2007

 I need to upload a very large access database to sql
2005.  Do I break this down by tables, queries or what?  Will
it take a long time.  I believe that database is 3488,888 kb in
size.   Thank youDee 

View 2 Replies View Related

Sql Wizard Error

Apr 4, 2008

Hi there
Apologies if I'm in the wrong post. I have a strange problem. I installed Sql Express Toolkit with the sole purpose to offer the import/export functionality in the Microsoft SQL Server90DTSBinn folder. After installation I did a quick test to make sure it works and it did. Suddenly now I get an error when I run the wizard file saying that it is not a valid win 32 application. I have a clean Windows XP S2 installation and definitly no virussus/worms etc. I have a simmilar problem when I try to run ASP.Net web starter kit files (.vss or something like that...)
PLEASE help me!

View 1 Replies View Related

SqlDataSource Wizard

Apr 23, 2008

Can anyone think of a reason for whilst configuring my SqlDataSource using the wizard in VS2005, when I click Advanced the Generate Insert, Update  and Delete Statements option is greyed out. Been using them plenty of times already elsewhere in the site, yet for no apparent reason it won't work on a couple of pages.

View 3 Replies View Related

DTS Wizard - Buggy?

Aug 11, 2005

Greetings,I have been trying to use the DTS Import Wizard to import data, but SQL Server seems to have a bug that Microsoft has not yet addressed (or have they?)Basically, when I import data from a text file into one of my existing databases that contains a field with an identity, I run into problems. Basically, SQL gives an error and refuses to import my data if the column is set to having an identity. In the Column Mappings, I set that row to "ignore." I also tried checking Enable Identity Insert, and I tried unchecking it. Nothing works. I receive this error message: "...The statement has been terminated. Cannot insert the value NULL into column 'MovieID', table 'myproject.dbo.MovieStars'; column does not allow nulls. INSERT fails."I thought that checking "Enable Identity Insert" would automatically tell DTS to insert an incremental identity value.When I use this transformation code, it doesn't work either:Function Main() DTSDestination("MovieName") = DTSSource("Col001") DTSDestination("MovieStar") = DTSSource("Col002") Main = DTSTransformStat_OKEnd FunctionThis gives me a different but similar error: "Insert error, column 1, ('MovieID', DBTYPE_I4), status 10: Integrity violation; attempt insert NULL data or data which violates constraints. Unspecified error"I think this is a SQL Server bug. My google searches have revealed MANY people with this similar problem, but their problem almost never gets answered. If anyone could please offer assistance, that would be great, as my head is turning black and blue from banging it on my desk for the past 3 days.Thanks

View 3 Replies View Related

Upgrad Wizard

Jun 8, 2001

very simple question but I do not know the answer.
Why I can not find the version upgrad wizard from my program -> sqlserver 7.0 ->?when it is installed ? How can I install this utility?
Thank you very much.

JD

View 1 Replies View Related

SQL 7.0 Upgrade Wizard

Sep 15, 2000

Chaps,

Im trying to upgrade to SQL 7.0 from 6.5. I currently have both installed on the
same machine in a switching enviornment.

I start the upgarde wizard and successfully get to the screen where you
enter the name of the 6.5 import server and 7.0 export server, I click next
and nothing happens (appart from the services stop and restart)!

Any ideas???

View 1 Replies View Related

Upgrade Wizard

Sep 21, 1998

On one of our test server I am trying to upgrade SQL Server 6.5 sp4 to SQL Server 7. The test server has a copy of all the live database systems and user accounts. I am using the Upgrade Wizard.

The process of upgrade stops after the following message

“Verify that code page ‘0’ is installed on your Windows NT Server”

I have no idea as to how I can over this problem. What I do know is that a code page can refer to character set. And that on the server I am upgrading the code page is 850 Multilingual.

Any help please.

View 1 Replies View Related

Import DTS Wizard

May 25, 2006

Hi...

Anybody out there who can help me on how to view the whole import process (DTS package created using Import DTS wizard) in SQL codes? Is there a possibility to view the process using Query Analyzer?

please help.

MyPast

View 1 Replies View Related

Upgrade Wizard

Oct 29, 2001

SQL2000

I'm looking for the upgrade wizard to port from 6.5 to 2000. I must be blind as I cannot find the damn files ...

Any assistance would be appreciated.

Thanks,

Craig

View 2 Replies View Related

DTS Wizard Prob...

Aug 12, 2005

Hi,

Having a problem with DTS Wizard crashing in XP, has anyone experienced similiar problems?

Using XP with SP1, transfering excel file to an oracle serve.

View 2 Replies View Related

Upgrade Wizard

Jul 23, 2005

Hello AllI have SQL Server versions 6.5 and 2000 installed on a Windows 2000server.I installed 6.5 first, coppied a backup of a database to the server andrestored it. I then installed 2000. I am trying to use the upgradewizzard.On the first screen I keep the default settings, export and importobjectsand data, use a named pipe. Its all on the same server, give it the sapassword for both installations (its the same). All services arerunningunder local system account.It switches between the two versions a couple of times then comes upwiththis error message:Couldn't create or register the SQLUpgrade DSNAnybody got any idea what it means?RegardsMatt

View 2 Replies View Related

Maintenance Wizard

Jul 20, 2005

I'm trying to backup several databases to UNC folders. I'm able to do itmanually for each database, but when I set up the maintenance plan it failsbecause SQL tries to use the SQL administrator account to push the data.The million dollar question is how does one change which account is runningthe maintenance?

View 2 Replies View Related

Implementation Of SCD Without Using A Wizard

May 24, 2007

Hi,



Please someone tell me the procedure of implementing the Slowly changing Dimension without using a wizard.



Thanks,

Chandana.

View 5 Replies View Related

Msi Did Not Install ADS Wizard

May 10, 2007

I ran the msi file but thereis no ADS wizard on my programs list, even after a reboot. When I run it again it does a repair but there is still no program. How do I find the right cab file for my device (DellAxim X51 With WM2005)

Is there a way to identify the wizard in C:programs?

View 1 Replies View Related

Web Sync Wizard On XP Box

Jan 14, 2007

I have (finally) successfully gotten through the maze and 'published' my database to a folder:

Physical path: I:SqlReplication

unc: WarrenassocSQLReplication

Since I'm running XP pro, I don't have the options of assigning specific read/write permissions to a folder.

However it appears the problem is with accessing the snapshot and the logon's there.



When I run the IIS Web Configure wizard I error out at the snapshot share permissions step (see report below)

Wizard Settings:

Click Finish to perform the following actions:


Modify a virtual directory immediately.

Copy the ISAPI dll 'sqlcesa30.dll" to 'I:SqlReplication" immediately.

Set NTFS permissions immediately.

The virtual directory 'SqlReplication' will be configured with the following options:


On server 'WARRENASSOC'.

Use 'SqlReplication' as the alias.

Use 'I:SqlReplication' as the physical path for the virtual directory.

Use 'Anonymous' as the authentication method(s).

Do not require secure channel.

Set user permissions to 'Execute'.

Clients can use 'http://WARRENASSOC/SqlReplication/sqlcesa30.dll' as the Internet URL.

'sqlcesa30.dll' will be copied from 'C:Program FilesMicrosoft SQL Server 2005 Mobile Editionserver' to 'I:SqlReplication'.



'WARRENASSOCEd Warren' will get the following NTFS permission:


'Read & Write' on physical path 'I:SqlReplication'.

'Read & Execute' on the ISAPI DLL 'I:SqlReplicationsqlcesa30.dll'.

'Read' on share physical path '\WarrenassocI$SqlReplication'.

'Read' on the share '\WarrenassocI$SqlReplication'.





- Modifying the virtual directory (Rolled back)

- Copying the ISAPI DLL (Rolled back)

- Setting the directory permissions (Rolled back)

- Setting the server agent permissions (Rolled back)

- Setting the snapshot directory permissions (Rolled back)

- Setting the snapshot share permissions (Error)



Messages

The operation completed successfully. (Exception from HRESULT: 0x80070000) (mscorlib)


- Modifying the Virtual Directory configuration file. (Stopped)







When I created the snapshot I used my personal logon (admin rights) at each step

I've tried all combinations of setting the permissions in the wizard from requiring a login and providing my personal login to no requirements and I get the same error.



I'm trying to set up to copy a database from my SQL Server 2005 --> SQl Server CE 31 RC1

to see it it meet my development needs.

I'm at a loss as to how to navigate the security maze!!

Thanks Edward Warren.









View 8 Replies View Related

Import Wizard

Jun 22, 2006

Hi,

I'm trying to import data from Microsoft Access. I already have all the
tables in SQL Server and also the relationships, but I can't seem to
import any data without deleting the relationships. Is there a way to
do this without deleting them?

View 3 Replies View Related

Upsizing Wizard

Jan 20, 2006

A few days ago I installed SQL Server 2005 Express edition and successfully used the upsizing wizard to convert a MS Access database to SQL Server database. Today I found I could get VB.Studio Express. The instructions said to delete SQL Server Express and .NET before installing VB Studio because it would re-install them both. I faithfully did that but since then I have been unable to get the upsizing wizard to work again. I have uninstalled SQL Server and re-installed it but still cant get it working. From SQL Server Configuration manager I can confirm that Shared Memory and TCP/IP protocol are both enabled for both protocols for clent and protocols for SQLEXPRESS Both the SQL Server and the SQL Browser are running. And from SQL Server Surface Configuration I can confirm that OPENROWSET AND OPENDATASOURCE SUPPORT is disabled; CLR Registration is disabled; OLE AUTOMATION is enabled; and xpCommandshell is disabled.

When I run the upsizing module it goes through the motions but the report at the end says "table was skipped or export failed" for each of the tables in the database.

I have looked everywhere I can think of to try to find a solution but no one so far has been able to help.

View 10 Replies View Related

Vb.net Setup Wizard.. Please Help Me Out

Feb 14, 2008

Hi friends

I have created a setup wizard for an application in vb.net and I tested in my system, it is working perfectly. But if i tried to install in another pc , the installation process go success, but once i open the new installed application, it is producing an error telling that it the applicatoin has encountered a problem and need to close it. im even not able to load the application. i will explain my project details below:


1 .It's a windows application and using connectivity to an sql cerver ce database (.sdf).
2. I removed all the default dataset and databinders from the program that i have written the coding for all connectivity.
3. im using system.data.sqlserverce for the connectivity

can anybody help me out please. the error is not producing in my system.

Im confused, whether it is required that the SQL server to be installed in the system or for .sdf files connectivity it is not required ?
please advice me on both issues.


thanx in advance

Nahas

View 1 Replies View Related

Web Synchronization Wizard

Mar 7, 2006

I'm trying to configure web synchronization using the wizard, It errors out on step "Setting The snapshot share permissions". The error I get is

The operation completed successfully. (Exception from HRESULT: 0x80070000)

Then all the other steps rollback. I'm using the default location for the snapshot i.e in REPLDATA folder. When creating the publication I used a UNC path to specify the snapshot folder. For testsing purposes I'm using a windows account that has admin privilages on the box that is running IIS. I'm just testing this merger replication over https, so I have IIS and the distributor on the same box. I created the publication, and the snapshot. I was walking through the wizard, all seems to be OK but can't get past this pesky error, which is strange seeing it says it complete successfully.

Help, any ideas?


View 14 Replies View Related

Stored Procedure Wizard

Feb 5, 2007

Hello Everyone and thanks for your help in advance.  I am new to SQL Server 2005 and am trying to understand the Stored Procedure Wizard.  In SQL 2000, it seems that the wizard does a lot more fo the actual generation of the sproc.  Also, I haven't figured out how to change the wizard to create an update, insert, or delete sproc.  I'm hoping that I'm simply not understanding how to effectively use it, but it really seems like the wizard has taken a step back.  Can someone give me some insight or articles on how to effectively use this?  Any help would be greatly appreciated.

View 3 Replies View Related

ASP.NET Wizard + Stored Procedure

Feb 21, 2007

HI,I have created a wizard control to collect user informations.First step : Personal informationsStep Two : Educational informationsAfter user completed and click finish button I want to add Personal informations to 'Personal' table in my sql server database.And also Educational information in to 'Educational' table.Using Stored Procedure  (here it is)CREATE PROCEDURE dbo.StoredProcedure1   @Fname varchar(10),  @Lname varchar(10),  @Email varchar(50),  @Tel varchar(20)AS  INSERT INTO Personal (Fname, Lname, Email, Tel)  VALUES (@Fname, @Lname, @Email, @Tel)  RETURN  So Now I want to add another stored procedure for Educational table.How do I do this.Should I modify this.But Educational info should goes to 'Educational' table not to 'Personal' How do I chieve this. Thanks 

View 1 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved