Viewing 15 posts - 361 through 375 (of 14,953 total)
Steve Jones - SSC Editor (12/13/2012)
The Death Star is now on the US White Houses agenda: http://www.washingtonpost.com/blogs/compost/wp/2012/12/13/white-house-must-respond-to-death-star-petition/
Yep. Saw that one. One comment I thought was hillarious, on a news...
December 13, 2012 at 1:34 pm
Michael Fried (12/13/2012)
1) Functionality that has been deprecated (or changed) in a newer version will...
December 13, 2012 at 1:32 pm
I guess it depends a lot on which definition of "the cloud" you're dealing with.
Is a virtual server on the Amazon EC2 infrastructure "the cloud"? How about a hosted...
December 13, 2012 at 1:21 pm
Sean Lange (12/13/2012)
...
However the reason I suggested using a temp table is because you want to capture all the rows not just one. If you don't need...
December 13, 2012 at 1:13 pm
Stefan Krzywicki (12/13/2012)
GSquared (12/13/2012)
Steve Jones - SSC Editor (12/13/2012)
December 13, 2012 at 1:12 pm
Steve Jones - SSC Editor (12/13/2012)
December 13, 2012 at 12:30 pm
I just tested this, and it worked:
USE ProofOfConcept;
GO
CREATE FUNCTION dbo.MyFunction (@Input INT)
RETURNS TABLE
AS
RETURN (SELECT @Input AS C1, @Input+1 AS C2);
GO
DECLARE @Var1 INT, @Var2 INT;
SELECT @Var1 = C1, @Var2 = C2
FROM...
December 13, 2012 at 12:24 pm
A suggestion: Ask about "lookup tables". Restore-no-data, does it include things like a table of US states and Canadian provinces? Are there tables that will need to have...
December 13, 2012 at 11:39 am
You're welcome.
Don't worry about the time. This kind of thing happens to all of us.
I've seen situations where hours were spent trying to debug something, but it just kept...
December 13, 2012 at 11:26 am
Unless you need to restore to an earlier state (point-in-time restore), the last diff is the only one you need.
December 13, 2012 at 11:22 am
Opening a new connection that way is definitely a valid alternative. Not at all "less professional". It won't change the connection of an existing tab/window, but it will...
December 13, 2012 at 11:15 am
Yes, you can do that, but you need to plan for what to do if the function returns more than 1 row, or make absolutely sure it can never do...
December 13, 2012 at 11:07 am
I don't know. Only way to find out is to ask them.
Of course, it'll probably be something where you end up going, "Ack! How'd I miss that?" and...
December 13, 2012 at 9:46 am
CELKO (12/12/2012)
Joe, considering the posts right before yours, this was a thing of beauty. Kind of like H-bomb explosions are a thing of beauty their own special way.
...
December 13, 2012 at 9:43 am
DDL trigger on the databases, or DML trigger on some tables?
Either way, you run a cursor that executes a script for you. It's just how to write it that...
December 13, 2012 at 9:38 am
Viewing 15 posts - 361 through 375 (of 14,953 total)