Viewing 15 posts - 1,111 through 1,125 (of 13,838 total)
What does 'not working correctly' mean? No results? Error message? Wrong results? Something else?
Note that if TRANSACTION_DATE is a DATETIME (rather than a DATE), BETWEEN is not the recommended way...
October 5, 2022 at 2:50 pm
I also suggest you start using <> rather than != for 'not equal to'. <> is a more widely accepted SQL standard than !=, as far as I know.
October 5, 2022 at 11:32 am
Change your SELECT to
SELECT TOP 100 PERCENT
with the rest of the query remaining as it is.
October 5, 2022 at 11:29 am
If you switch the level back to 120, this stops happening?
'First' = first ever, or first since instance was started, or first time in current day?
October 3, 2022 at 2:57 pm
I have never used Jetbrains rider, so no. But as database properties are created in VS before the creation of any DACPACs, I suspect that it cannot be done.
October 3, 2022 at 1:56 pm
Have you added the variable to the SQLCMD Variables collection in Database Properties?
October 3, 2022 at 1:09 pm
I do not know the answer to your question, but I do have a suggestion. Rather than calling a stored proc to do the column-name checks, keep things inside SSIS...
October 3, 2022 at 12:07 pm
Is this just a one-off, or are you designing a process which needs to run regularly and automatically?
October 3, 2022 at 10:23 am
I am as puzzled as you.
Have you tried playing around with the number of rows of comments to see how (or whether) that affects anything?
You could also try changing the...
September 30, 2022 at 9:55 am
This is what I've come up with so far. Can someone grade me on this, or say if you think there's a better way?
with ad as...
September 30, 2022 at 8:39 am
Hello!
I have a table with 2 million rows. I need to insert data into new table for each batch of 100000 rows.
Thanks in advance.
This is a requirement, not a...
September 30, 2022 at 8:34 am
Use a query to get your data from SQL Server into SSIS and use CAST in the query to get the BLOB into string format
DROP TABLE IF...
September 30, 2022 at 8:30 am
Please provide your sample data in the form of CREATE TABLE/INSERT statements. Also provide your desired results, based on the sample data.
September 29, 2022 at 7:10 pm
I have two unique keys in one table and I want to write a query that connects me to two unique keys and displays them in one record. Right...
September 29, 2022 at 3:00 pm
That is a lot of data. Have you looked at the execution plan? Are the underlying tables appropriately keyed and indexed?
September 29, 2022 at 7:15 am
Viewing 15 posts - 1,111 through 1,125 (of 13,838 total)