Viewing 15 posts - 1,246 through 1,260 (of 13,838 total)
thanks reply ,
I just guess it is Oracle I am not sure , I am new to it .
this ER diagram is from the vendor , they just ask...
July 29, 2022 at 2:26 pm
Do you have access to the database containing this table? If you do, try generating the 'CREATE TABLE' script for it. When you see that, it should help explain what...
July 29, 2022 at 10:28 am
I can't give you a web page because I do not know which product you used to generate the E/R diagram. It wasn't a SQL Server database diagram, as far...
July 29, 2022 at 10:20 am
I think I can help with most of that.
P = Primary Key
F = Foreign Key
The PK_ and FK_ are constraint names, these correspond with the P and Fs.
Red asterisk means...
July 29, 2022 at 9:14 am
Show me how to make this better, if you don't mind. String split isn't recognised for some reason, which makes no sense, unless my version of ssms is too old.
Whether...
July 28, 2022 at 8:05 pm
What have you actually installed? How is Visio relevant to any of this?
July 28, 2022 at 2:48 pm
This link shows you how to use SMO to generate the CREATE TABLE script.
July 27, 2022 at 11:38 am
Update U set col10=col10+@SSISvariable From mytable U where U.col1='xyz' and col2='abc'
This will update col10 in the same set of rows for each iteration of the loop. Why would you do...
July 27, 2022 at 11:29 am
Seems that a good architecture for you would be to push the imported data into (truncated) staging tables and then execute one or more procs which MERGE the staged data...
July 26, 2022 at 5:29 pm
then on success to a sql task with a waitfor delay
Or a script task with a Thread.Sleep().
July 25, 2022 at 3:42 pm
Edit: changed my mind.
July 25, 2022 at 2:32 pm
As long as you don't mind which order the 'UniqueNumber' is assigned in, this might work:
WITH counts
AS (SELECT p.PartNumber
...
July 25, 2022 at 10:37 am
I've modified your structure a little to make it more relational and injected some constraints to demonstrate typical referential integrity. Hopefully, it helps you with this. Post back with any...
July 24, 2022 at 12:08 pm
You could paste the results into Excel and colour the results with an Excel formula.
Or run the queries direct from Excel using PowerQuery.
July 23, 2022 at 10:30 am
Nothing else comes to mind. It feels like it's something outside of SSIS ... could some other process be locking the file temporarily? A/V software or some sort of folder...
July 22, 2022 at 1:29 pm
Viewing 15 posts - 1,246 through 1,260 (of 13,838 total)