Viewing 15 posts - 1,696 through 1,710 (of 7,191 total)
Yes, it's possible. You use output parameters to get the values from your different connection into variables, then you use those same variables as input parameters to your delete task....
March 9, 2017 at 7:29 am
Search this site for "splitter functions". You can use a splitter function with "/" as the delimiter.
John
March 9, 2017 at 7:06 am
Phani
I don't suppose anyone has the sa password?
Changing the service account to adm may automatically give it sysadmin access, but I'm not sure of that. You...
March 8, 2017 at 9:02 am
March 8, 2017 at 8:45 am
Is SQL Server Enterprise Edition, or Standard? You might try experimenting with max server memory (maybe set it a little lower to give the OS a slightly larger slice of...
March 8, 2017 at 8:14 am
Dan
Sounds like you've anticipated that someone is going to suggest using a splitter function. If you can't create one, not even in tempdb, then you'll need to modify...
March 8, 2017 at 7:39 am
Phani
You need to speak to the administrator of the server (the DBA?) and ask to be granted the necessary access to the database. If you don't have it,...
March 8, 2017 at 7:33 am
Looks like when you join your source and target tables on those four columns, you have more than one value of No_Of_Attempts in your source table for one or more combinations...
March 8, 2017 at 7:24 am
This is going to fail if the user who created the record has since been deleted. Why don't you change the function so it gets the user name instead of...
March 8, 2017 at 5:42 am
Please can we see the code? Have you tried EXECUTE AS OWNER or dbo? You should be using sys.database_principals instead of syslogins, since the latter is deprecated.
John
March 8, 2017 at 4:57 am
SQL Server Browser only works for named instances, so if your instance is a default instance, you won't need it. Assuming you have a named instance, though, since it is...
March 8, 2017 at 4:16 am
Have you tried applying SP2? Better still, why not go straight to SSMS 2016?
John
March 8, 2017 at 3:39 am
Paul
That's your answer, then. Index rebuilds need space in the database, which is freed up at the end of the operation. Consider using Ola Hallengren's database maintenance solution...
March 8, 2017 at 3:30 am
Paul
Where do you get that figure of 42-50%? Please will you post the results of sp_spaceused? How big is the largest table in the database, and how often...
March 8, 2017 at 3:02 am
Paul
Your log file is tiny, and your data file is growing by only a GB at a time. Is auto-shrink enabled?SELECT DATABASEPROPERTYEX('MyDB','isAutoShrink')
What are...
March 8, 2017 at 2:42 am
Viewing 15 posts - 1,696 through 1,710 (of 7,191 total)