Viewing 15 posts - 571 through 585 (of 747 total)
You indicated BillingRateB was blank, but in the picture it is BillingTypeB that is blank -- Rate (which is either BillingRateA or BillingRateB) is always populated. But there are...
November 18, 2021 at 10:32 pm
So the count returned is right.
Can you provide one or more sample source rows and corresponding output rows (obfuscated as appropriate) where the problem lies?
November 18, 2021 at 9:02 pm
Since you are aliasing BillingRateA as 'Rate' and BillingRateB as 'Rate', are you saying that you are seeing a populated Rate column when you run just the bottom half, but...
November 18, 2021 at 8:49 pm
A primary key is really just a unique index (clustered or not, depending on how it was created). Microsoft has wrapped it w/ some logic that syntactically implements it as...
November 17, 2021 at 7:37 pm
Short of writing your own dtsx processor, there is no way to run dtsx packages without SSIS. dtexec is the executable that parses & implements the logic in dtsx...
November 17, 2021 at 5:54 pm
No. If you really need/want to convert the unique index to a primary key, you will have to drop the index and create the primary key - I don't believe...
November 17, 2021 at 4:29 pm
November 16, 2021 at 8:18 pm
November 16, 2021 at 6:02 pm
If you are running certain queries frequently, turn them into stored procedures. Then they will be saved in SQL Server and accessible through the object explorer. And stored procedures...
November 16, 2021 at 2:24 pm
No. It's no longer available. Microsoft has once again killed a feedback site for SQL Server.
November 16, 2021 at 2:16 pm
It is often the case that persisting working data can improve performance, and probably won't take long to test this anecdotally, so I wouldn't discourage trying it. But long term...
November 15, 2021 at 10:58 pm
You can only create indexes on views if they met certain criteria: https://docs.microsoft.com/en-us/sql/relational-databases/views/create-indexed-views?view=sql-server-ver15
Indexed views are only valuable in limited circumstances. If you've already created indexes on the table that allowed...
November 15, 2021 at 8:07 pm
What do you mean by "customized" log shipping?
Are you trying to do a timed drill to estimate recovery time, or just trying to prove you can failover successfully?
You ask for...
November 12, 2021 at 3:23 pm
You can insert the data into a user-defined table type variable , add a table-valued parameter (TVP) to the second procedure referencing that table type, and pass the variable from...
November 10, 2021 at 3:58 pm
Viewing 15 posts - 571 through 585 (of 747 total)