Viewing 15 posts - 7,216 through 7,230 (of 59,072 total)
Thanks you Jeff for your accurate post; I will keep your observations in mind and I will consider them in they more general meaning. At the moment I am...
April 24, 2020 at 1:55 pm
April 24, 2020 at 1:41 pm
>> I have a table with 2 fields [sic] DocumentID and ArrivedDate. <<
You might want to actually read the standards for SQL. A field is a subset of a...
April 23, 2020 at 8:55 pm
It's conditional counting. Sql is terrible at this.
To add to that,
I agree with Ken here that the application side is better suited for this.
Personally, I would refrain...
April 23, 2020 at 5:39 pm
I do this in order to store an XML path
To be honest, that sounds like a slow and possibly error prone process being made to be slower and more...
April 23, 2020 at 4:56 pm
If my table has 1 Clustered Index (PK), and a dozen of non-clustered row-store indexes.
I drop constraint... (existing PK/Clustered Index), Create Clustered Columnstore index on the table.
After this should...
April 23, 2020 at 2:57 pm
I'll second Grant's recommendation on Gail's articles. Personally, I consider them to be THE "Goto" articles on the subject especially since she's keen not only about performance but also on...
April 23, 2020 at 2:53 pm
Just curious how many of us use case insensitive fields?
I generally have no need for case sensitive data. However, if I did, I'd likely NOT make the whole server...
April 23, 2020 at 2:32 pm
First, and to be sure, I always appreciate anyone that steps up to the plate with an article, especially on such a topic.
I agree with Aaron. This is NOT a...
April 23, 2020 at 2:03 pm
I'll also add....
April 22, 2020 at 7:43 pm
The run took just as long when using the CE alias in the update.
If you're running what you posted, it's not actually running. Like I said in my previous...
April 22, 2020 at 5:01 pm
It's amazing to me how the visceral fear from the /90s and early 2Ks about xp_CmdShell still continues. Disabling xp_CmdShell does nothing for security except provide a 3ms speedbump in...
April 22, 2020 at 4:57 pm
My question would be.... why do you NEED to go through the intermediate server to begin with?
April 21, 2020 at 11:02 pm
You could create a synonym that points to a database, run your code, drop the synonym, recreate it pointing to another database, run the code, wash-rinse-repeat. It's dynamic without having...
April 21, 2020 at 11:00 pm
So mapping the drive with "net use" will map the drive for you not the SQL Server Service account.
You're absolutely correct about "net use" assigning according to the current...
April 21, 2020 at 10:56 pm
Viewing 15 posts - 7,216 through 7,230 (of 59,072 total)