Viewing 15 posts - 1,111 through 1,125 (of 14,953 total)
Any rows with NULL in keyVal in T2? If so, Not In will return 0 rows.
Makes sense if you think of NULL as "we don't know". "Not in"...
August 2, 2012 at 8:59 am
I recently completed a project that required cleaning up over 100-million rows of name-and-address type data. It was a mess, and the clean-up was very, very resource-hungry. But...
August 2, 2012 at 8:56 am
Scott, as a post-script:
Don't assume that your opinion, unbacked by data, is going to convince people of anything. Repeatedly asserting "Erwin>Visio" without any sort of analysis at all being...
August 2, 2012 at 8:20 am
ScottPletcher (8/1/2012)
GSquared (8/1/2012)
ScottPletcher (8/1/2012)
Stefan Krzywicki (8/1/2012)
ScottPletcher (8/1/2012)
Stefan Krzywicki (8/1/2012)
So what does Erwin do that Visio doesn't?
...
>> every database I'm currently doing dev work in <<
A straw man, since the topic...
August 2, 2012 at 7:55 am
Usman Butt (8/2/2012)
GSquared (8/1/2012)
Here's a function I tested, and the test I used....
@GSquared Any reason for not turning it into iTVF/iSF? I guess then the it could have been much...
August 2, 2012 at 6:58 am
Greg J (8/1/2012)
Got an example GSquared?Thanks!
It's been 10 years since I last used VB with any intensity. I just look things up online and then modify/fiddle till it does...
August 2, 2012 at 6:45 am
Script object is your best bet.
August 1, 2012 at 11:09 am
ScottPletcher (8/1/2012)
Stefan Krzywicki (8/1/2012)
ScottPletcher (8/1/2012)
Stefan Krzywicki (8/1/2012)
So what does Erwin do that Visio doesn't?
I didn't think Visio even offered a logical data model (i.e. Entity modeling vs table modeling), I...
August 1, 2012 at 10:08 am
Here's a function I tested, and the test I used:
USE [ProofOfConcept]
GO
/****** Object: UserDefinedFunction [dbo].[InitialCapTest1] Script Date: 08/01/2012 11:20:42 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER FUNCTION [dbo].[InitialCapTest1] (@String...
August 1, 2012 at 9:36 am
Boby B Jacob (8/1/2012)
Does SQL Server 2008 and higher version supports *= operator of Joins?
You can find a list of features deprecated/being deprecated, in versions of SQL Server, here: http://msdn.microsoft.com/en-us/library/ms143729(v=sql.90).aspx
Use...
August 1, 2012 at 8:28 am
L' Eomot Inversé (8/1/2012)
Grant Fritchey (8/1/2012)
Kiara (8/1/2012)
Does this look like a giant advertisement to anyone else?http://www.sqlservercentral.com/Forums/Topic1039196-391-1.aspx
Nah, I'm sure 5 different people are going to swoop in and post once time...
August 1, 2012 at 8:24 am
Grant Fritchey (8/1/2012)
SQLRNNR (7/31/2012)
Grant Fritchey (7/31/2012)
August 1, 2012 at 7:48 am
I use a combination of things to track changes.
First, I have a folder for each project I'm working on, and store all DDL and DML scripts for the project in...
August 1, 2012 at 7:39 am
If you turn off ANSI_NULLS settings in your query environment, you can do "X = NULL" type tests. Details here: http://msdn.microsoft.com/en-us/library/ms188048.aspx
It is strongly recommended that ANSI_NULLS be turned on,...
August 1, 2012 at 7:30 am
Viewing 15 posts - 1,111 through 1,125 (of 14,953 total)