There were errors in VS2013 when a Windows Phone 8.1 App is launching for deploy and debug: > Error 1 Error : DEP6100 : The following unexpected error occurred during > boostrapping stage 'Connecting to the device': SmartDeviceException - > Deployment failed because no Windows Phone was detected. Make sure [...] read more
I have two databases. Source database: http://sdrv.ms/VkX8tj and star database: http://sdrv.ms/12S7Zkc I'm transfering data from the 1st to the 2nd, using SSIS project: sdrv.ms/YDUvU4 (can't post 3rd link, sorry for inconvenience) As You can see, there is an error in my script. It goes "The column has a null value." [...] read more
Using ICSharpCode.SharpZipLib to update a zip file by deleting a specific document from the zipped contents, using the following code: protected async Task updateZip() { var fragment = "resources/graphics.json"; ZipFile zipFile = null; using (var memoryStream = new MemoryStream()) { using (var stream = await resourceClient.GetBlob("files/pageengine/document.epl")) // .epl is a [...] read more
How can I get the creation of external lists to work from a powershell script? I have a solution that I am deploying to a SharePoint 2010 server using a rather large powershell script. When the script is about to create the external list using a BCS model as it's [...] read more
The SSIS package is Deployed in Integration Services catalog and a SQL Agent Job is created. The Job Fails giving the error - 'Could not create a managed connection manager', But the SSIS runs fine in BIDS. I changes the User from Service Account to SSIS proxy too - both [...] read more
We migrated some XML files (Views) from test to production. When the technician tried to create a work order, they got an error. The ds51prod.log said the following: SelectSchemaQueryFailed: SELECT * FROM ds51_cm_offlineids ORA-00942: table or view does not exist Error Details: Exception Type: DataSplice.Db.DbException HRESULT: 0x80131600 Stack Trace: at [...] read more
I am having an issue with one of my SSIS projects. I developed this package over a year ago and it has run flawlessly until I upgraded Visual Studio. The original project was in VS Shell 2010. My new version is VS 2017 Pro. The setup is pretty basic. I [...] read more
We got a couple of custom SSIS components which were created targeting SSIS for SQL Server 2014. We are now migrating our dtsx packages to SSIS for SQL Server 2016. I have modified the custom SSIS components such that assembly references to DTS assemblies have been given the property SpecificVersion=False. [...] read more
I have a com visible dll that I am trying to call from classic ASP. I have successfully registered it using regasm and I'm still hitting the following error. 0x80131600 - Server object: 006~ASP 0177~Server.CreateObject Failed~80131600 the application works fine on many other machines so there is something environmental causing [...] read more
I have recently had to rebuild a C# interop created for calling from VB6. I have registered it with regasm (using codebase switch) and added the tlb as a reference to the VB6 project but when I attempt to call it I get the following automation error: -2146232832 (0x80131600) If [...] read more
I have a .NET DLL that exposes a method that looks like this in C#: void TestMethod(ref TestClass[] parameter) Where TestClass is a regular C# class that has a COM-visible interface, and I'm supposed to call the method with an array with one element. I can't figure out how to [...] read more