Viewing 15 posts - 1 through 15 (of 82 total)
We mostly use SSMS.
We tried to move to SSDT to assist with source control and deployment, but found this only worked well with small schemas. Our largest database is well...
June 19, 2019 at 12:23 pm
January 19, 2017 at 7:07 am
January 16, 2017 at 5:23 am
I'm glad you folks liked it. That problem occurred in a production system I developed and had me scratching my head for a while. Why did my query return no...
November 30, 2016 at 5:35 am
CREATE TABLE SalesArchive
(
Salesid INT PRIMARY KEY NONCLUSTERED
, SalesPersonID INT
, SaleDate DATETIME2
, SaleTotal NUMERIC(12, 4)
);
GO
CREATE CLUSTERED INDEX SalesArchive_CI_SalesPersonID ON dbo.SalesArchive(SalesPersonID) ;
GO
Yep: qustion definitely needs adjusting:
INSERT...
June 10, 2015 at 5:52 am
@t.ovod-everett : good one.
I tested on SQL Server 2012 and the following works great
DECLARE @NullIfFmtOnly int = (SELECT 1);
but using a constant does not work i.e.
SET FMTONLY ON
SET @NullIfFmtOnly=1
gets the...
December 16, 2014 at 5:09 am
A great article - A lot of these will be added to my list of interview questions.
I was got by a few of them and it prompted me to...
March 1, 2013 at 6:23 pm
Hi Lynn,
Nice article and an interesting discussion.
I am wondering if any folks who have been following this discussion can explain or corroborate this phenomenon:
Last year I was working on a...
September 25, 2009 at 7:51 am
Im inspired. Sydney has an active group but I havent gone in person for years. Time to get off my butt.
June 11, 2009 at 8:25 am
I like the article - it gives a clear rundown on the pros and cons of the simple built in diagramer, which I have found very handy.
The fact that the...
May 19, 2009 at 7:57 am
Thanks for your comments folks.
I had forgotten about the SET ROWCOUNT and #tempTable methods . Those worked for all the older versions of SQL and still work now. I just...
April 7, 2009 at 6:51 am
It is worth pointing out that :setvar variables are not like variables in a programming language. They are more like constants. I think it works this way: SQLCMD evaluates the...
March 30, 2009 at 6:10 am
Great article, David.
I had not seen examples of the error and standard outputs before.
Kuldip: it looks as though your windows login does not have windows integrated access to the server....
March 24, 2009 at 6:00 am
The registry fix worked for me.
I installed SQL 7.0 MSDE on top of a working SQL Server 2005 adn the 2005 was clobbered. I tried re-installing SQL 2005 as a...
March 2, 2009 at 3:50 pm
Hi Brian,
I am looking forward to the recordings very much. The timing is a bit difficult for me to attend live.
I have a question already:
Where does Performance Point fit into...
February 19, 2009 at 2:42 am
Viewing 15 posts - 1 through 15 (of 82 total)