Questions tagged [dac]

Questions utilizing the DAC tag are expected to relate to some aspect of Microsoft Data Tier Applications or DAC. Questions can include the DAC framework or DACfx, schema scripts from DACPAC, and combined data/schema scripts BACPAC. For questions about digital-analog converters, use [digital-analog-converter].

A DAC is a self-contained unit of deployment that enables data-tier developers and DBAs to package SQL Server objects, including database and instance objects, into a single entity called DAC package. Developers can build a DAC package using the Data-tier Application project system in Visual Studio, whereas SQL Server Management Studio (SSMS) users can extract a DAC and generate a DAC package file for an existing database.

A DAC package can be deployed to an instance of SQL Server to create a new DAC instance. The DAC deployment installs a new database on the instance, creates the database objects, and creates the logins associated with the users of the database. If a previous version of the DAC is already available, the DAC package can be used to upgrade the existing DAC instance to a newer version.

Questions utilizing the DAC tag are expected to relate to some aspect of Microsoft Data Tier Applications or DAC. Questions might also include related subjects such as the DAC framework or DACfx, as well as schema scripts known as DACPAC, and combined data/schema scripts BACPAC.

178 questions
0
votes
2 answers

How to properly add records to DAC through PXActions in an Extension

SUMMARY I have created a graph extension for the APInvoiceEntry graph (AP301000 screen), called APInvoiceEntry_Extension. I created a new DB Table called APRegisterException, which stores exception information for SalesTax, Freight, Price, and Qty…
0
votes
0 answers

How to design an class d output filter ( active filter )?

I want to filter output of my full-bridge class d power amp. I'm trying to connect an ideal differential op to class d output for simulation. But class d output through ideal differential op , growing noise floor(5~10dB). I suspect that problem is…
0
votes
1 answer

The reference to external elements from the source named 'xyz.dacpac' could not be resolved

I am using Microsoft.SqlServer.Dac.dll to deploy my dacpacs programmatically. Even though I am including all the dacpacs for the referenced database projects at the target location, I am getting "The reference to external elements from the source…
C Joshi
  • 11
  • 3
0
votes
1 answer

Single cycle 44.1kHz sampled 1kHz sine wave in c

I am attempting to create a single cycle sine wave in c. The frequency needs to be approximately 1kHz and sampled at 44.1kHz. This is because the sine lookup table is being fed into a stm32f4 microcontroller that is sampling at 44.1kHz and then out…
J.Clam
  • 7
  • 3
0
votes
2 answers

Play audio files in microcontroller (Arduino)

I try to make a Bluetooth speaker with a microcontroller (Arduino, teensy... I don't have a defined model, because I'm considering the frequency) My question is if I want to put a SD, for reading music stored, the problem is there are library only…
DrakoPD
  • 161
  • 1
  • 13
0
votes
0 answers

Interfacing output to a DAC - VHDL

I am trying to interface the output of my FPGA onto a DAC. I am using the PmodDA2 DAC. The trouble I am having is working out how to output the data from a 16bit register into 1 bit per clock cycle. I have studied the timing diagram and understand…
Paul James
  • 121
  • 2
  • 7
0
votes
1 answer

Setting up multiple DACs on an STM32F4-Nucleo

I am working on a project that requires me to use 5 TLC7524 DACs. They will all be receiving data from an 8 bit bus. For data transfer, the process is CS pin, WR pin, send Data. I was wondering if I could get away with grounding the CS pin on all of…
J.Clam
  • 7
  • 3
0
votes
1 answer

STM32 & TLV5628 SPI Communication

Hi Everyone and thank you for your time. I have been working on interfacing the STM32f446RE Nucleo board with the TLV5628 8 Bit Octal Serial DAC. I have ran into multiple issues, but the current issue has been one of two things: 1) The data and…
J.Clam
  • 7
  • 3
0
votes
1 answer

Visual Studio database project builds on local machine, but fails on build server

I'm trying to set up CI for a database project of mine, but am running into an issue that is stumping me. I'm able to build the project successfully on my machine; however, when I check in my changes to TFS and my build server attempts to build the…
Kyle
  • 21
  • 6
0
votes
1 answer

Acumatica - Graph Extension

Good Day Sir / Ma'am, Forgive me for asking this question if ever this question was already raised in the community, but I can't seem to find the right answer to my problem. I have an extended graph which contains 2 custom views, which is the…
Linnaire
  • 61
  • 9
0
votes
0 answers

STM32F767ZI interface with DAC082S085

I plan to use STM32F767ZI USART port in synchronous mode and control DAC (DAC082S085) for generating two Analog Signals. I also want to control the amplitude of these analog signals. So, how can I do in CubeMx and Keil? Thank you
AE104
  • 1
0
votes
2 answers

Where do DAC objects live (in Classic ASP)?

I have taken over a departing programmer's Classic ASP object, and I'm trying to debug some DAC code. The trouble is I don't really understand what DAC is or how it works -- and I can't find were the DAC code "lives". Here's the individual line of…
Kevin Rettig
  • 167
  • 1
  • 8
0
votes
1 answer

Is registering a database as a DAC required to deploy DACPAC?

Looking at the publish profile in my SSDT database project I see an option for RegisterDataTierApplication. It's not clear to me if this is a requirement in order for DACPAC deployment to work.
Joe Eng
  • 1,072
  • 2
  • 15
  • 30
0
votes
0 answers

Desktop App Converter (UWP creation) -AppId parameter format

Desktop App Converter (UWP creation) -AppId parameter correct format. Dev assign number 12345name.name Wrong (error): -AppId "12345name.name" Working (but invalid in dev centre): -AppId "name.name12345"
satheesh
  • 1
  • 3
0
votes
0 answers

Tests' deployment to DB with DAC package stalling sporadically

In my automated tests (MSTest in a new project using Visual Studio 2017), I'm deploying a fresh database before each test case runs like so (databaseName is random and unique, and cleaned up after each test run finishes): [TestInitialize] public…
Dov
  • 15,530
  • 13
  • 76
  • 177