Viewing 15 posts - 481 through 495 (of 2,458 total)
Alternatively, you can bypass sys.sql_modules all together and use OBJECT_DEFINITION.
CREATE VIEW MyView
AS
SELECT 1 AS Col1;
GO
SELECT OBJECT_DEFINITION(OBJECT_ID('MyView'))
September 8, 2016 at 2:06 pm
corey lawson (9/8/2016)
September 8, 2016 at 12:58 pm
Budd (9/8/2016)
Thank you Alan."Not Replicating Triggers" the trigger itself, or the results after a triggered event?
I was talking about the triggers themselves. I had a situation a few years back...
September 8, 2016 at 11:10 am
Budd (9/8/2016)
What are the pros and cons that you see for each type of replication in a situation like this?Thanks
The pros are that SQL Server Replication is stable and reliable...
September 8, 2016 at 8:41 am
Ditto everything Drew said. We'll need more info to help you.
Perhaps something like this (I did a few permutations based on my best guess of what you need).
SELECT...
September 6, 2016 at 4:41 pm
turlteman.mike (9/1/2016)
This looks useful but whrere you have this lineSELECT TOP (1) calDate MIN(caldate)
Is the strikethrough deliberate?
Sorry I almost missed this.
Yes, I was saying that using MIN seemed...
September 6, 2016 at 10:43 am
That means the service is either failing to start and crashing. That's something a DBA or Server Admin would have to look into. A service failing to start or crashing...
September 1, 2016 at 8:41 am
Adam Sandler (9/1/2016)
Any settings I can apply to make...
September 1, 2016 at 8:17 am
Can you provide an example of what you are getting as well as what you should be getting?
September 1, 2016 at 7:41 am
Adam Sandler (9/1/2016)
September 1, 2016 at 7:37 am
Everyone has touched on this but the most important thing to understand is: the only way to guarantee that results are returned in a specific order is with an ORDER...
August 31, 2016 at 8:42 am
pietlinden (8/30/2016)
Is there a good beginner book on Multi-Dimensional / Tabular? I've been playing with DAX for a while (and I'm still terrible at it!)Especially one that covers security/RLS.
I...
August 31, 2016 at 8:11 am
but I'm learning using DAX/PowerPivot/PowerBI. (gotta start somewhere!) and then I watched Brad Gall's presentation on Analysis Services. It's not a new video, but it made me wonder... if you...
August 30, 2016 at 3:28 pm
I don't have enough Postgres experience to say how it compares to SQL Server but if you know what you're doing you can make a search-intense workload move pretty quick...
August 30, 2016 at 2:15 pm
Viewing 15 posts - 481 through 495 (of 2,458 total)