Viewing 15 posts - 6,676 through 6,690 (of 7,636 total)
At this point I am not sure. I would have to research it, but hopefully, someone else here know the answer and will chime in.
June 11, 2008 at 8:11 am
Well, if we're looking for examples, a Fourier Transform would proabably be a good candidate for CLR.
June 11, 2008 at 8:03 am
I know it's redundant, but I think that my earlier post really bear repeating here:
rbarryyoung (6/2/2008)
June 11, 2008 at 7:50 am
Well said, Steve.
I often wonder how may people in our industry realize that their jobs, careers and the whole or IS and the Software industry is dependent on intellectual property...
June 11, 2008 at 7:45 am
See my post here, for some background... http://www.sqlservercentral.com/Forums/Topic514855-1291-1.aspx#bm515159
June 11, 2008 at 7:39 am
grevesz (6/10/2008)
In the mean time, could you please direct me to some reading material...
June 11, 2008 at 7:27 am
Jack is right, of course. So I wanted to take a minute to highlight the difference between these two suggestions.
My two suggestions (called Snapshots or Row Versioning) allow users...
June 11, 2008 at 7:26 am
kaykay005 (6/10/2008)
June 10, 2008 at 4:51 pm
Use either:
ALTER DATABASE {yourDB} SET READ_COMMITTED_SNAPSHOT ON;
Or,
ALTER DATABASE {yourDB} SET ALLOW_SNAPSHOT_ISOLATION ON;
And then have the Deleting proc start its transaction like this:
SET TRANSACTION ISOLATION LEVEL SNAPSHOT;
BEGIN TRAN
The first...
June 10, 2008 at 4:32 pm
Yes, please do.
I had considered that as an option, but was concerned that I would be taking on even more problems.
June 10, 2008 at 4:17 pm
bump.
June 10, 2008 at 12:48 pm
Steve Jones - Editor (6/10/2008)
June 10, 2008 at 11:37 am
If you prefer your own editor, that's great. Many do still use custom editors. But the Wizards are another story, ultimately, they are just limiting.
June 9, 2008 at 5:42 pm
Michael.Lowden (6/9/2008)
Oh I totally agree. But really isn't it the only way to create a view without typing the supporting TSQL for like "CREATE VIEW" etc?
Yes, you have to...
June 9, 2008 at 4:58 pm
Ah, yes. You are using the View wizard as GSquared surmised.
Here's how to fix that: Never use the View wizard. Use query windows instead.
The View wizard is...
June 9, 2008 at 3:37 pm
Viewing 15 posts - 6,676 through 6,690 (of 7,636 total)