如何在SQL Server中将数据库提取为dacpac文件夹?

问题描述

我一次在SQL Server中提取了一个数据库。它创建了一个文件夹,其内容如下所示。

publications { "${getPublicationName()}" (MavenPublication) { groupId Config.groupId artifactId Config.artifactId version Config.versionName artifact getArtifactFilePath() pom.withXml { def dependencies = asNode().appendNode('dependencies') configurations.getByName("${getPublicationName()}CompileClasspath").getResolvedConfiguration().getFirstLevelModuleDependencies().each { def dependency = dependencies.appendNode('dependency') dependency.appendNode('groupId',it.moduleGroup) dependency.appendNode('artifactId',it.moduleName) dependency.appendNode('version',it.moduleVersion) } } } }

folder view

我需要像这样提取另一个数据库。我试图将其提取为dacpac。但是它只能以(function( $ ){ $.fn.grtmobile = function () { if ($(window).width() < 992) { $('.grt-mobile-button').on('click',function(){ $(this).toggleClass("grt-mobile-button-open"); $("ul.grt-menu").toggleClass("open-grt-menu "); }); } }})( jQuery ); 文件的形式提取。

我需要像图片中一样获得db_ExamTimtable folder文件。但是我不记得上次将数据库提取为文件夹时所做的事情。

如何提取数据库以获取此文件夹?

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)

相关问答

错误1:Request method ‘DELETE‘ not supported 错误还原:...
错误1:启动docker镜像时报错:Error response from daemon:...
错误1:private field ‘xxx‘ is never assigned 按Alt...
报错如下,通过源不能下载,最后警告pip需升级版本 Requirem...