Viewing 15 posts - 226 through 240 (of 8,760 total)
I think we used to exclude from virus scans based on extension, not an entire folder because other files may be worth scanning if something sneaks in there. Exclude...
November 12, 2022 at 12:08 pm
Sounds like either a DNS or a network issue, the Browser Service uses UDP/1434.
😎
November 12, 2022 at 12:01 pm
Has anyone found a way to disable the ability of certain clients to save or export the results of a SQL query in Management Studio?
The answer is "no can...
November 12, 2022 at 11:39 am
I see automation as an excellent opportunity to focus on development and interesting stuff like problem-solving by automating routine work to free up time.
😎
November 12, 2022 at 11:21 am
Eirikur Eiriksson wrote:Have a look at this thread
😎
That's a long thread. You might want to provide the post number for where we ended up on that thread.
Good point Jeff!
😎
Here...
November 10, 2022 at 11:40 am
Can you please post the DDL (create table) script, sample data as an insert statement and the desired output from the sample data!
😎
November 9, 2022 at 3:12 pm
Have a look at this thread
😎
November 9, 2022 at 2:56 pm
Quick thought!
😎
November 5, 2022 at 1:24 pm
Further on Frederico's post, can you supply the answers to my questions and his, please? Without the information, it is going to be really hard to help you!
😎
A third-party tool...
November 5, 2022 at 1:18 pm
November 4, 2022 at 2:48 pm
Questions:
November 4, 2022 at 12:54 pm
Just in case anyone else is having the issue... I've verified that I'm no longer getting email responses for posts that I've subscribed to or have responded to. I've...
November 4, 2022 at 11:39 am
Hmmmm, the first question would be "Why is someone with 3000+ points on this forum asking such a simple question?"
😎
The second question is "do you understand the problem, the algorithm...
November 3, 2022 at 1:34 pm
Quick thought, this can be simplified
😎
Example:
DECLARE @TSQL NVARCHAR(MAX) = CONCAT(N'SELECT * INTO ',(SELECT QUOTENAME('SalesPerformance' + CAST(YEAR(CURRENT_TIMESTAMP)-1 AS VARCHAR(4)))), N' FROM SalesPerformance;')
SELECT (@TSQL);
Further, I advise you to look...
November 3, 2022 at 1:08 pm
Quick thought, algorithms like Levenshtein Distance are overkill for such a naive comparison.
😎
Here is one way of doing this:
USE TEEST;
GO
SET NOCOUNT ON;
GO
---------------------------------------------------------------------
-- SAMPLE DATA
---------------------------------------------------------------------
DECLARE @COMPTEXT TABLE
(
...
November 3, 2022 at 12:43 pm
Viewing 15 posts - 226 through 240 (of 8,760 total)