Viewing 15 posts - 2,131 through 2,145 (of 6,679 total)
First - you have to calculate the quarter start and end dates and name for all relevant quarters for that warranty start date. Once you have that you left join...
October 17, 2019 at 9:05 pm
This is not a bug - it is related to the first query that is executed after the stats have been updated. That first query will generate the execution plan...
October 17, 2019 at 8:14 pm
SELECT getdate() AT TIME ZONE 'Eastern Standard Time';
October 16, 2019 at 6:46 pm
If you are using the Integration Services Catalog - then you have access to the All Executions report which will show you how long each task takes when the package...
October 16, 2019 at 6:39 pm
Even with a secondary setup in asynchronous mode - transactions need to be hardened on that secondary before they can be marked for reuse on the primary. They can (and...
October 16, 2019 at 6:37 pm
You can setup the agent job to send notification on completion - you don't have to add a job step and use sp_send_dbmail. Database Mail does need to be setup...
October 15, 2019 at 7:59 pm
Yes, you're correct. In fact, as a developer, I always aim to write code without using any UDFs in the statements. However, in my scenario, we had a lot...
October 14, 2019 at 8:03 pm
This will at least get you the components to be able to design/develop the RDLC reports. I am guessing that from here you can find tutorials and help.
October 14, 2019 at 7:53 pm
I've been revisiting some older textbooks (especially the ones with updates) and one of my favorites is the old "psychology of computer programming" and although subjective, it really reinforces...
October 12, 2019 at 4:12 pm
SQL log seems to think he's logging in with a SQL Server login. I gave him instructions on how to set up DataGrip for windows authentication, but he says...
October 12, 2019 at 3:48 pm
As far as I can tell - that error is a file system error which seems to indicate that the agent cannot execute the SSIS package because it cannot access...
October 11, 2019 at 6:38 pm
Is the user account in SQL Server set as Windows or SQL account? If using Windows Authentication - have you confirmed that Kerberos is configured correctly and that the user's...
October 11, 2019 at 6:35 pm
A basic outline for this:
October 10, 2019 at 6:38 pm
Not sure I understand what you are trying to do - but it shouldn't be necessary. If you are using Project Deployment to an Integration Services Catalog you can modify...
October 10, 2019 at 6:27 pm
WHERE LEFT(AKey, 3) IN ('AAA', 'BBB', 'CCC', 'DDD', 'EEE', 'GGG', 'JJJ') AND LEN(AKey) = 9AFAIK, Scott's solution is the better one, because LIKE 'AAA%' is...
October 9, 2019 at 9:41 pm
Viewing 15 posts - 2,131 through 2,145 (of 6,679 total)