Viewing 15 posts - 1,786 through 1,800 (of 7,191 total)
Depending on things like fragmentation and fill factor, having a clustered index doesn't use any more disk space than not having one. This is because a clustered index is nothing...
February 20, 2017 at 3:25 am
Take a look at this article. There are several reasons why your statistics may not have updated. May be auto update stats isn't turned on. Maybe your table...
February 20, 2017 at 2:27 am
If you aren't using the while loop any more, what method are you using to delete in batches? Is the whole thing running in an explicit transaction, by any chance?
February 17, 2017 at 7:10 am
This is a SQL Server forum and you're asking for a Powershell solution; allow me to propose a SQL solution instead. Why not import each CSV file (using bcp, BULK...
February 17, 2017 at 3:47 am
February 17, 2017 at 2:32 am
Use aliases to keep your code readable. The ambiguous column may (also) have come in your SELECT list, so make sure you alias all the columns in there as well.
February 16, 2017 at 9:11 am
February 16, 2017 at 8:27 am
Mike
Does the database already exist on the target server? Do you have Instant File Initialization enabled? It sounds as if it's spending 50 minutes creating and zeroing the...
February 16, 2017 at 7:34 am
You need to join to KeywordsColour on CarColour = KeywordNo, and to all the other lookup tables in a similar way. Have a look at this if you're new...
February 16, 2017 at 3:59 am
As I suggested before, I don't think CXPACKET is the root cause. What other wait types do you get for the same process? Please run this while you're waiting (fruitlessly)...
February 16, 2017 at 2:17 am
Are there any synonyms in the database?
SELECT name, base_object_name
FROM sys.synonyms
John
February 15, 2017 at 9:53 am
February 15, 2017 at 9:27 am
At a guess, I'd say the application is converting the password to upper case, which wouldn't have mattered on SQL Server 2000 (depending on the server collation) but definitely does...
February 15, 2017 at 9:22 am
February 15, 2017 at 9:06 am
Viewing 15 posts - 1,786 through 1,800 (of 7,191 total)