Viewing 15 posts - 16 through 30 (of 1,409 total)
Thanks! I was able to solve this by taking database offline then immediately bringing it back online.
This sounds like the storage (SAN/mountpoint?) where the LOG file was located was...
April 30, 2019 at 11:21 am
A listener doesn't prevent access to other databases on the primary instance. Since you disabled the network card on the primary server, the secondary server becomes primary for each and...
April 19, 2019 at 1:01 pm
Create a "Numbers" table holding all the numbers required to display the expanded result. Join this "Numbers" table with the source table on both the ROW_ID and the Last_Row column....
April 19, 2019 at 12:49 pm
Make sure the mail server is configured to allow the SQL server to relay messages. Also make sure you have set up the correct credentials for the database mail configuration....
April 19, 2019 at 12:24 pm
In addition to Grant Fritchey's post: create credentials and use proxy accounts (see: https://www.mssqltips.com/sqlservertip/2163/running-a-ssis-package-from-sql-server-agent-using-a-proxy-account/) to run SSIS packages from SQL Agent jobs.
April 3, 2019 at 10:26 am
I have decided to go for the Powershell route and...
September 13, 2018 at 10:36 am
I agree with Steve to not save passwords in SSIS. Modify your SSIS package to set them with variables. Here are some links with explanations on how to do this:
July 12, 2018 at 7:38 am
July 2, 2018 at 4:39 am
I don't know if it will work, but I would give the "copy database" wizard from SSMS a try (right-click a database...tasks...copy database). If that don't work you can still...
June 25, 2018 at 8:07 am
Below is a solution without looping. Although I guess this is still not the most optimal way... it's the best I could come up with for now.
[code...
June 25, 2018 at 7:44 am
Take a look at scenario 2 as written in this article. With this scenario you create a new [master] database after which you can replace it with the...
June 22, 2018 at 4:47 am
I want to seperate one column which has multiple...
June 22, 2018 at 4:41 am
Pinal Dave described such an issue several years back. See https://blog.sqlauthority.com/2015/04/10/sql-server-login-failed-for-user-reason-server-is-in-script-upgrade-mode/. Can you check the SQL Error log (from Windows Explorer/Notepad)?
May 31, 2018 at 12:47 am
@steve-2: Agree, but the original query filters on one year. That makes my suggestion valid for this query. It may not be the case when different specs are required.
May 30, 2018 at 12:39 pm
Which one to use depends on your needs. But reading your post I guess a UNION fits well.
The position depends on the process. You can first join all...
May 30, 2018 at 9:20 am
Viewing 15 posts - 16 through 30 (of 1,409 total)