03-13-2024 10:52 AM - edited 03-21-2024 09:57 AM
This article provides you with the frequently asked questions related to ContentConnector SQL Server. Please see the links below and post any questions in the comments area. If you cannot find what you are looking for, please Ask a Question HERE for DataSource.
Can I use integrated security on SQL Server?
How can we stop rebuilding the index (DBCC DBREINDEX) after every import process?
In DataSource-SQLServer.xml there is an update policy for rebuilding indexes. It is possible to remove or comment it out and DBCC DBREINDEX will not run:
<!--UpdatePolicyMethod tableName="cds_Prod" methodName="rebuildIndexes" description="*** <p>REBUILD INDEXES"> <UpdatePolicyArg name="tableSet" value="DataSource"/> <br></UpdatePolicyMethod-->
If I don't want to give ContentConnector sysadmin access, how can the tables still be owned by dbo?
Why do I get Foreign Key error "The ALTER TABLE statement conflicted with the FOREIGN KEY constraint "S_FK_CCTPROD_2_CCTCAT"..."
Why BCP cannot import any record into the tables with SQL Azure?
1. Make sure the Server connection string does not contain a semi-column (;) at the end, like this: < ServerURL>jdbc:sqlserver://SERVER:1433;database=DATABASE;< /ServerURL >
2. Try to use a password without too many special characters, such password will make BCP fail: < Login User="user_login" Password="-dP.\w9VBygI"/>
3. Avoid to have a database name starting with a digit. Instead of “1WorldSync“ for example, preferably use “OneWorldSync“.