Quantcast
Channel: Open DBDiff
Viewing all articles
Browse latest Browse all 281

Commented Unassigned: Index SQL queries has a wrong column order [15440]

$
0
0
Currently the sql queries at the class \DBDiff\DBDiff.Schema.SQLServer2005\Generates\SQLCommands\IndexSQLCommand.cs has a wrong column at the ORDER BY clause, currently you have:

```
ORDER BY I.object_id, I.Name, IC.column_id
```

But the correct is

```
ORDER BY I.object_id, I.Name, IC.index_column_id
```

this way you get the correct order of the columns on the index definition.
Comments: I'm currently using your tool in a project, so I'm debugging it a lot, and have made some other fixes and improvements. What is the best way to show you the changes I made?

Viewing all articles
Browse latest Browse all 281


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>