Viewing 15 posts - 2,071 through 2,085 (of 6,679 total)
The OP stated "I want to make a report to let user export data from SQL Server database" so why not consider SSRS?
This also has the benefit of allowing...
December 23, 2019 at 6:18 pm
The users in the database were originally created on the source system - and were created with a specific SID. When you restore that database to a new system -...
December 23, 2019 at 6:11 pm
Is this a direct DELETE statement - or are they calling a stored procedure to perform the delete? If calling a procedure - and they have execute permissions on the...
December 18, 2019 at 7:23 pm
The best way is to contact the vendor and request that information - hopefully they are able to provide it for you, even if it is just a subset for...
December 18, 2019 at 7:14 pm
Based on my quick review - HA is available through windows clustering for the Scale-Out Master service and AlwaysOn for the SSISDB catalog.
The service will be installed on each node...
December 13, 2019 at 7:29 pm
So - you have a bunch of SSIS packages stored in the file system and SQL Server Agent jobs are setup to execute those SSIS packages?
If that is the case,...
December 11, 2019 at 6:54 pm
Also - be careful with referencing columns without using the table alias.
Select po_num
From poitem_all
Where poitem_all.po_num Not In (Select po_num From preqitem)
In...
December 10, 2019 at 11:00 pm
It sounds like you have an integration services server - which would have SQL Server Integration Services installed. For the ETL processes - review how they are configured...are they referencing...
December 10, 2019 at 10:38 pm
I would recommend reviewing this article: https://www.sqlskills.com/blogs/paul/important-change-vlf-creation-algorithm-sql-server-2014/
I don't think it will apply - as long as you are not using an very small fixed size for growth of the log.
December 5, 2019 at 7:33 pm
How are you getting to the parent report? If you are linking to that report from another source - then that link can be configured to disable the navigation buttons. ...
December 4, 2019 at 8:32 pm

The last button is the back button - which will return you to the parent report without refreshing the data.
December 3, 2019 at 11:19 pm
I believe the stored procedure implicitly returns the double quotes to capture the field as there are some addresses with commas. What is the best practice in SSIS to...
December 3, 2019 at 7:06 pm
That's actually a plus. 🙂 True names, and all that. Is the lack of resets also true for the TRUNCATE verb?
No - truncate will reset the identity value to...
December 3, 2019 at 6:58 pm
CheckDB when running primarily effects IO for the TempDB database and not so much on the database you are running it on. Try running your query against TempDB while...
December 3, 2019 at 6:46 pm
Would that transfer the passwords for sql account?
Yes - it creates the new login with the same password and the same SID. Because the SID is the same -...
December 3, 2019 at 6:39 pm
Viewing 15 posts - 2,071 through 2,085 (of 6,679 total)