Viewing 15 posts - 1,186 through 1,200 (of 7,191 total)
You only need to rebuild index ID on table ID 50099219 - surely the downtime for that is a small price to pay for fixing the corruption? You could schedule it...
October 19, 2017 at 9:37 am
Anders
Yes, shrinking a file reduces the physical space it takes on disk. Without a shrink, the space that the deleted rows took will be available for more data...
October 19, 2017 at 5:17 am
Anders
If your database has a size limit of 10GB and you're always hovering near to that number, there's no point in shrinking it. You won't get much back...
October 19, 2017 at 3:14 am
Use the REPLACE function. You'll need to work out what character is being used for line breaks - CHAR(13) or CHAR(10), maybe.
REPLACE(MyCol,CHAR(13),'||')
John
October 18, 2017 at 7:03 am
Is there any reason why you're using a RIGHT OUTER JOIN? Updating the outer table of that join means you're going to be attempting to update rows that don't exist....
October 17, 2017 at 1:48 am
Please check the syntax of the UPDATE statement. The JOINs go at the end, after the assignments, and you need a FROM.
John
October 16, 2017 at 9:57 am
I'm afraid you've just discovered one of the reasons why a SQL Server service account should be the account under which the SQL Server service runs... and nothing else. If...
October 16, 2017 at 2:33 am
Have you tried querying SSISDB?
John
October 13, 2017 at 9:26 am
Then I'd guess that the user is also a member of a group that is explicitly denied permissions on the schema. I'm sure you can expand the queries I posted...
October 13, 2017 at 9:07 am
If you run these two statements in the database in question, do you get any results?
SELECT * FROM sys.database_permissions
WHERE state_desc = 'DENY'
SELECT *...
October 13, 2017 at 8:58 am
Santhoshkumar KB - Friday, October 13, 2017 7:38 AMSince this is production box, I am not willing to run DBCC PAGE !!
I...
October 13, 2017 at 7:59 am
You can query the backup tables in msdb to find out the size of your log backups. Take the largest size of those, add a safety marging of 50% (say),...
October 13, 2017 at 3:54 am
Joel
I don't know why that is, but why have you installed SSMS 2014 instead of the latest version, available here?
John
October 12, 2017 at 8:48 am
October 12, 2017 at 5:53 am
Viewing 15 posts - 1,186 through 1,200 (of 7,191 total)