Viewing 15 posts - 331 through 345 (of 1,988 total)
One trick I've seen if you don't want to do the entire shrink in one operation is to do the shrink steps in a loop and shrink the size by...
December 12, 2019 at 3:13 pm
Yeah, I am ancient. I'd still pick SQLCMD or PowerShell over bcp though.
Heh... guess I'm more ancient. I've not found much that will actually beat BCP...
December 11, 2019 at 3:18 pm
Because columnstore and non columnstore indexes are designed for different use cases. And because of that column store indexes are not an automatic solution for performance issues and simply replacing...
December 11, 2019 at 3:06 pm
Well, I got to the first line of the article "Database UPPERCASE". I just wondered why you should have a database in uppercase? What if it consisted of 2...
December 10, 2019 at 8:21 pm
What is the context for what you're trying to do, how are you running the export and how big is the data set? There are a number of options, bcp,...
December 10, 2019 at 3:38 pm
Have you looked into trying the reverse function?
December 6, 2019 at 9:17 pm
p.s. I've also adopted the policy of NVO (No Verbal Orders), especially for "urgencies". It there's not a well documented ticket to support the urgency, it doesn't...
December 5, 2019 at 12:59 am
p.s. I've also adopted the policy of NVO (No Verbal Orders), especially for "urgencies". It there's not a well documented ticket to support the urgency, it doesn't get done. ...
December 4, 2019 at 7:18 pm
SELECT Date,
SUM([101]) OVER (ORDER BY Date) Acct#1,
SUM([201]) OVER (ORDER BY Date)...
November 19, 2019 at 5:44 pm
That is correct. I want to store the content of the Word and PDF in vardinary into SQL server. Also, If can do some parsing using Java script as...
November 14, 2019 at 2:38 pm
Do you mean you want to store the document as a varbinary in SQL Server and do so from javascript?
November 13, 2019 at 11:08 pm
Assuming you'll only have 1 record per ID marked with a Y you could do something like,
SELECT *,
MAX(CASE WHEN NewAddressFlag = 'Y' THEN Address1 ELSE ''...
November 5, 2019 at 2:37 pm
The truly sad part about this discussion is the lack of understanding of data integrity and consistency. Sigh.
You do understand that this technique is intended primarily to present information...
November 5, 2019 at 2:29 am
This is getting tiring.
Except snapshot isolation does not automatically do what you say as it operates on an individual statement level. So each subsequent query might still use different...
November 4, 2019 at 10:35 pm
Viewing 15 posts - 331 through 345 (of 1,988 total)