Viewing 15 posts - 271 through 285 (of 323 total)
Sorry for the late reply chaps...
I was busy loosing yet another football match with my Kids team!
Lost 7-5 last week, 6-4 this week against the same team. This is starting...
November 8, 2009 at 8:18 am
Frank,
Thanks for your answer, it confirms my impressions.
I know about degenerate dimensions but I don't think there is one in this datamart/datawarehouse regarding dates.
It's wonderful, there is lots of scope...
October 6, 2009 at 5:50 am
Looks like the moral is that we should test the return code from that procedure...
DECLARE @Return INT
EXECUTE @Return = sp_rename N'fakename', N'fakename2', 'OBJECT'
SELECT @Return
Forget @@Error!
September 17, 2009 at 7:23 am
Sorry to be a bit late but I don't see why the first one is incorrect.
Could someone explain, please? :ermm:
August 25, 2009 at 7:21 am
several rows.
Funny enough, I thought about writing to a local table too.
In theory there should be only one such request at a time but I could return some kind of...
June 30, 2009 at 2:47 pm
In the end, it looks like there was a failed Security Update for Sql Server 2005 sp2 and we were lucky that there seemed to be a second set of...
February 12, 2009 at 4:45 am
For those interested (it can happen)
The solution was effectively to
- create a table in the database (that is, if you want to store the info)
- create a Package (or...
January 12, 2009 at 11:02 am
The point (tell me if I am wrong...) of QotD is to make us all think a little bit about some technical point(s).
Not to "trick" the reader...
That does not...
December 12, 2008 at 4:40 am
Sorry guys for being late but I'd really like my three points, please...
I said yes you can because it was so obviously implied that a full backup was done.
Otherwise, is...
December 12, 2008 at 4:16 am
Christian,
Is it not "part of the fun" to sometimes get it "not entirely right"?
I actually find the debate as interesting if not more interesting than the original question and/or answer.
It...
July 8, 2008 at 9:02 am
Another aspect to solve your problem is...
I warn you: you won't like this...
DOCUMENTATION!!!
I used to use a tool called Case Studio to document my database schemas.
It still exists and...
July 8, 2008 at 8:29 am
With 2005, you can use "Schemas" to achieve a little bit of that.
To a large extent, working with flat files for each object also helps a lot.
You could put these...
July 8, 2008 at 6:49 am
I think this should do
SELECT OBJECT_NAME(object_id), * FROM sys.sql_modules WHERE definition LIKE '%CURSOR%'
🙂
July 8, 2008 at 3:56 am
Cool, it's now official: I did not get insane yet... 😛
This was really driving me up the wall!
Although I don't understand why your function works the way it is, I'll...
July 7, 2008 at 10:02 am
Viewing 15 posts - 271 through 285 (of 323 total)