Viewing 15 posts - 1,261 through 1,275 (of 8,416 total)
LutzM (1/10/2012)
...
January 10, 2012 at 10:49 am
kwoznica (1/10/2012)
🙂 Ok ok....I'll read through it.
Please do. It can do everything you have asked easily, you just need to invest a little time trying it. I know...
January 10, 2012 at 8:03 am
Essex (1/10/2012)
January 10, 2012 at 7:57 am
I didn't mean to imply there was only one, though I see it could be read that way. Didn't really think it through at all, come to think of...
January 10, 2012 at 6:50 am
The tunnel is a fine achievement to be sure. Some regard the stuff that is in the tunnel as more impressive still.
January 10, 2012 at 6:43 am
The site is usually pretty good at handling spam reports so my personal view is we don't need moderators, in general. Judging from an automated out-of-office email I received...
January 10, 2012 at 6:18 am
This works for me:
Function definition:
USE AdventureWorks
GO
CREATE FUNCTION dbo.TableColumnList(@TableName sysname)
RETURNS TABLE
AS
RETURN
SELECT
STUFF
(
...
January 10, 2012 at 5:58 am
Essex (1/10/2012)
January 10, 2012 at 4:49 am
elogen (1/10/2012)
January 10, 2012 at 4:42 am
Try an in-line function instead of that scalar one:
CREATE FUNCTION dbo.GetNextMonthFirstThursday
(
@ReferenceDate date
)
RETURNS TABLE
WITH SCHEMABINDING
AS
RETURN
/*
...
January 10, 2012 at 4:11 am
Gianluca Sartori (1/10/2012)
Why re-invent the wheel? Adam Machanic wrote a great piece of code known as "sp_WhoIsActive", that will tell you this and much more. Give it a try!
Agreed. ...
January 10, 2012 at 2:50 am
Could you provide some sample code to illustrate your problem?
January 10, 2012 at 2:48 am
I've tried to work out what you are doing from the information provided. Please try the following example, based on your code, and let me know if I have...
January 10, 2012 at 2:44 am
sqlfriends (1/9/2012)
Thanks, the first article is certainly helpful for my future reference, but I just didn's see anywhere it mentions to handle pk or forign key constraints violations.
It's been some...
January 9, 2012 at 2:30 pm
Viewing 15 posts - 1,261 through 1,275 (of 8,416 total)