Viewing 9 posts - 16 through 24 (of 24 total)
I have now implemented a configuration scheme like this, and thought that I would share my learnings.
I had to add "Instead Of" triggers to my view to manage the inserts,...
July 28, 2009 at 12:22 am
I have now implemented a configuration scheme like this, and thought that I would share my learnings.
I had to add "Instead Of" triggers to my view to manage the inserts,...
July 28, 2009 at 12:14 am
Hi Scott
A nice approach - although I do this in my application server when querying with LINQ rather than on the database. Of course sometimes that is not practical (Like...
July 22, 2009 at 2:07 am
Hi Scott
I just came across this article, and wanted to congratulate you on a very interesting and well thought out approach.
regards,
Joon
July 22, 2009 at 1:25 am
Hello
I noticed that you have the column data type as "Text"
This is a special datatype that is used to store huge amounts of text (in excess of thousands of...
July 15, 2009 at 2:34 am
This is a very interesting topic of discussion, especially around how server sizing has changed to development practice 😉
Of course the point is very true - what you are running...
July 15, 2009 at 1:58 am
I took the "OP requires a PRINT" as a challenge... 😀
How about this?
Set NOCOUNT ON
Declare @result varchar(8000)
set @result = ''
Declare @Numbers Table (val int)
Insert into @Numbers
Select Ones.val + Tens.val
from (Select...
June 26, 2009 at 12:51 am
Hello
Here is one that uses a cartesian product:
Select Ones.val + Tens.val
from (Select 0 as val
union Select 1
...
June 25, 2009 at 4:15 am
We could not get SSIS configuration files to work when the package is stored in MSDB.
Admittedly this might be due to a lack of knowledge, but I have tried once...
June 18, 2009 at 1:20 am
Viewing 9 posts - 16 through 24 (of 24 total)