Viewing 15 posts - 1,351 through 1,365 (of 2,458 total)
.Netter (6/16/2015)
I can't provide any code, as I haven't got that far yet.
I have built my UserSettings table where by I will be comparing the values between this table and...
June 16, 2015 at 1:52 pm
I have been doing BI for about 8 years now and have never heard of these products. That does not mean they're not good. I looked over the website for...
June 15, 2015 at 10:35 pm
I put together a real-life example of where the Levenshtein Distance is used.
Say you had a SQL Job or ETL package that imported data into a data warehouse or data...
June 15, 2015 at 9:47 pm
You could apply it to a table like so:
USE tempdb
GO
CREATE FUNCTION edit_distance(@s1 nvarchar(3999), @s2 nvarchar(3999))
RETURNS int
AS
BEGIN
DECLARE @s1_len int, @s2_len int, @i int, @j-2 int, @s1_char nchar, @c...
June 15, 2015 at 8:57 pm
sgmunson (6/15/2015)
drew.allen (6/15/2015)
sgmunson (6/15/2015)Also, just as a general rule, almost no one uses RIGHT joins because it's just not intuitive.
I've actually wondered about this. I know this is true...
June 15, 2015 at 8:31 pm
Getting the data from Access to SQL Server is pretty easy. From SQL Server you wI'll right click on the DB where you want to import the access data, select...
June 15, 2015 at 4:38 pm
Jeff Moden (6/13/2015)
Alan.B (6/12/2015)
It's a bad idea to use RDP to manage a DB server.
If you're going to say something like that, you need to explain why....
June 15, 2015 at 12:25 pm
Take a look at this article:
It's a bad idea to use RDP to manage a DB server. MS Windows and SQL Server offer a variety of tools for...
June 12, 2015 at 9:21 pm
phosplait (6/12/2015)
@Lynn, I would...
June 12, 2015 at 6:02 pm
June 12, 2015 at 4:19 pm
Yes, the Scientific Method is a lot more work than making unsubstantiated claims and hitting publish, but it's also a lot more likely to produce a post that's useful, and...
June 12, 2015 at 2:08 pm
tsobiech (6/12/2015)
...Things would be so much easier if I could just use a parameter in a view.
That's what an inline table valued function is (or at least how you can...
June 12, 2015 at 11:57 am
June 12, 2015 at 8:55 am
And... SP_WHO3 is not a built-in Microsoft sproc. - can you post the DDL you are using to create SP_WHO3?
June 12, 2015 at 8:42 am
JP10 (6/11/2015)
Alan, your saying for the total time it took to execute and not in real time correct?
I don't know if I understand your question so I'm not sure if...
June 11, 2015 at 7:02 pm
Viewing 15 posts - 1,351 through 1,365 (of 2,458 total)