Viewing 15 posts - 1,681 through 1,695 (of 2,649 total)
you need to use the output clause
With ProductName(ProductID, Description)
AS
(
SELECT ProductID, ProductName
FROM dbo.Products
)
INSERT INTO ProductName ...
February 7, 2020 at 10:50 pm
ahhhh... who will code review my SP with 10k lines ..
Having said this in my shop some of the teams do do some level of code review - and...
February 7, 2020 at 10:33 pm
ahhhh... who will code review my SP with 10k lines ..
February 7, 2020 at 6:01 pm
could be a bug - but it is also how ADR / PVS works.
look at the troubleshooting section of https://docs.microsoft.com/en-us/sql/relational-databases/accelerated-database-recovery-management?view=sql-server-ver15 - DMV's will probably help you determine what is causing...
February 7, 2020 at 5:58 pm
you will need mapping tables for sure - with source ids and new id's
how many will depend on your system.
so initial migration step is to do the "base" tables e.g....
February 6, 2020 at 6:49 pm
if both use the same ERP system maybe the vendor has a tool that will "merge" both into a single instance - have you contacted them about it?
And not all...
February 5, 2020 at 10:33 pm
what have you googled and what have you found out that you didn't understand?
plenty of info out there and we are not here to do the search for you.
February 5, 2020 at 10:25 pm
and out of curiosity why are you still using something that requires you to connect to Integration Services? in 2016 you should be using SSIS Catalog which does not require...
February 5, 2020 at 12:50 am
but I think you need a login - possibly under the contract your company has for Informix
or you may be able to use a third party driver - possibly https://www.progress.com/odbc/ibm-informix
February 4, 2020 at 8:00 pm
you need to understand how filtering can be done - and the order it happens. and the difference between being a inner or a outer join
February 3, 2020 at 1:01 am
you don't have any filtering on #SOURCETABLE - you only filter on the join, so all records from #SOURCETABLE will be selected.
and the only record you have on the sample...
February 3, 2020 at 12:29 am
according to documentation it would seem that it does not but worth confirming with someone that does work with PDW
February 2, 2020 at 7:15 pm
sysadmin is server (instance) level role as seen on
description of what each column for syslogins below
and as you will need it for sure https://docs.microsoft.com/en-us/dotnet/framework/data/adonet/sql/server-and-database-roles-in-sql-server
February 2, 2020 at 2:03 pm
Ideally you would load the events onto a sql server table and do the analysis and initial filtering there - easier with high volumes.
sample example that I use to do...
February 2, 2020 at 1:43 pm
then don't commit the username/password - that could be on a "do not commit" file on your machine and get BIML to retrieve the username/password part from that file
February 1, 2020 at 7:06 pm
Viewing 15 posts - 1,681 through 1,695 (of 2,649 total)