Viewing 15 posts - 736 through 750 (of 7,191 total)
Well, yes. A unique index is (almost) the same as a primary key. Take the UNIQUE out of the statement and everything will be good. You only need the index...
June 4, 2018 at 9:31 am
June 4, 2018 at 8:50 am
Create a clustered index on table2 on the same columns that will form the clustering key on the main table. You'll then need to write a query that will not...
June 4, 2018 at 8:38 am
Perhaps it's a default language thing. Suppose you have a line in your query WHERE DateCreated > '01-12-2017', this could be interpreted differently depending on whether a user's...
June 4, 2018 at 7:55 am
No, absolutely not. Normal log backups in normal circumstances; a tail-log backup in extreme circumstances, for example someone has deleted a large table and I need to restore the whole...
June 4, 2018 at 6:48 am
DDL = CREATE TABALE statement, including CREATE INDEX statements. Queries = the full query you're having a problem with.
If you're filtering on auftragdatum, that's likely to be painful,...
June 4, 2018 at 6:36 am
I think it depends on the context, not on the method. If I'm backing up a log of a database with the intention of restoring over that database, I'd call...
June 4, 2018 at 4:30 am
When you say 58 million rows have been deleted/rebuilt, what do you mean? What rows are affected - just those at the end of the table, or rows in random...
June 4, 2018 at 3:55 am
June 1, 2018 at 7:11 am
I'm confused about whether you're using a linked server or not. But try something like this. If you are indeed using a linked server, make sure you understand about linked...
May 23, 2018 at 9:06 am
Try this. If you wanted to go to an indeterminate number of dimensions, you'd need to use dynamic SQL. I don't know whether, or at what point, performance will become...
May 23, 2018 at 8:43 am
May 23, 2018 at 8:11 am
Like I said, this is something you need to do yourself. It's too tiresome to expect someone else to do it for you, not to mention the fact that we...
May 22, 2018 at 9:41 am
I can't open your file - just as likely to be due to restrictions this end as to anything wrong with the file itself. Combing through a deadlock graph isn't...
May 22, 2018 at 8:13 am
Viewing 15 posts - 736 through 750 (of 7,191 total)