Viewing 15 posts - 1,876 through 1,890 (of 8,731 total)
Y.B. (11/15/2016)
Grant Fritchey (11/15/2016)
That pyramid looks amazing.BTW, I'll be going on SQL Cruise in January. It's stopping at Cozumel. Who wants to go see the pyramid with me?
Awesome! I...
November 15, 2016 at 8:55 am
Eirikur Eiriksson (11/15/2016)
Luis Cazares (11/15/2016)
Here's an option using a modified version of the pattern splitter explained in here: http://www.sqlservercentral.com/articles/String+Manipulation/94365/The only modification was to make it CASE sensitive.
Nice one Luis!
😎
Thank you,...
November 15, 2016 at 8:31 am
Y.B. (11/15/2016)
November 15, 2016 at 8:08 am
Here's an option using a modified version of the pattern splitter explained in here: http://www.sqlservercentral.com/articles/String+Manipulation/94365/
The only modification was to make it CASE sensitive.
ALTER FUNCTION [dbo].[PatternSplitCM](@List [varchar](8000) = NULL, @Pattern [varchar](50))
RETURNS...
November 15, 2016 at 7:47 am
mw112009 (11/15/2016)
GMI am assuming that this Db will have those tables that start with the "DM" prefix ( Ex: DmDate )
Yes, AdventureWorksDW (with whatever version number) is the data warehouse...
November 15, 2016 at 7:33 am
Eirikur Eiriksson (11/15/2016)
lady.konvicka (11/15/2016)
first replace for CHAR(0) removes character 'C' --- I dont know Why
when u set input to...
November 15, 2016 at 7:21 am
Ed Wagner (11/15/2016)
djj (11/15/2016)
Manic Star (11/15/2016)
djj (11/15/2016)
Ed Wagner (11/15/2016)
BWFC (11/15/2016)
ClickLink
Missing
Dog
Cat
Mouse
Cheese
November 15, 2016 at 7:06 am
The answer is correct but the explanation seems to be missing the part where it explains why is the second NULL not counted as duplicate. Or maybe it's just me...
November 15, 2016 at 6:52 am
Eirikur Eiriksson (11/14/2016)
😎
If the plan contains sensitive data then you can use SQL Sentry Plan Explorer to anonymize...
November 14, 2016 at 9:51 am
What about rewriting the WHERE clause to this?
WHERE NOT EXISTS(
SELECT 1
...
November 14, 2016 at 8:22 am
djj (11/11/2016)
Ed Wagner (11/11/2016)
Revenant (11/11/2016)
HopeFaith
Charity
goodwill
November 11, 2016 at 12:59 pm
ryanbesko (11/11/2016)
From a programmer's point of view, I couldn't live without these features, which were not available in SQL Server 2005:Common Table Expressions: https://msdn.microsoft.com/en-us/library/ms175972.aspx?f=255&MSPPError=-2147217396
MERGE: https://msdn.microsoft.com/en-us/library/bb510625.aspx?f=255&MSPPError=-2147217396
ROW_NUMBER(): https://msdn.microsoft.com/en-us/library/ms186734.aspx
Only MERGE wasn't available in...
November 11, 2016 at 11:51 am
Here's an alternative, if the digits don't have to be consecutive. A change to make them only xxxxxxy / yxxxxxx should be easy.
WITH CT(CN) AS (SELECT CN FROM (VALUES (0),(1),(2),(3),(4),(5),(6),(7),(8),(9))...
November 11, 2016 at 9:33 am
Dmitriy Burtsev (11/11/2016)
For production environment we prefer script solution to compiled executable.
So, you'll be asking MS for the source code for DTExec? That's the compiled executable needed.
November 11, 2016 at 7:43 am
Viewing 15 posts - 1,876 through 1,890 (of 8,731 total)