Viewing 15 posts - 1,876 through 1,890 (of 6,486 total)
Jeff Moden (6/30/2009)
espilman (6/30/2009)
All I was saying is that I wasn't sure whether the integrity of the columns needed to be intact.
That's exactly the reason why I want to know...
June 30, 2009 at 10:39 am
GilaMonster (6/29/2009)
Chris Harshman (6/29/2009)
June 29, 2009 at 12:49 pm
Be sure that the linked table you have set up in access knows there is a "primary key" /clustered index on the SQL table. If it doesn't know how...
June 29, 2009 at 12:07 pm
or, global variables, a settings XML file....lots of possibilities....
June 29, 2009 at 12:04 pm
(cynicism alert)
....seems awfully interesting that was the very first post from the OP....
(/cynicism alert)
June 29, 2009 at 11:59 am
Sounds to me like you are going to need to set up the assembly as unsafe. I don't believe you can access those libraries without it.
June 23, 2009 at 7:24 pm
I don't know about too complicated....
drop table #formulaTableshort
drop table #formulaTable
create table #formulaTableshort(formula varchar(100))
declare @formula varchar(100)
declare @sql nvarchar(max)
declare @result decimal(9,2)
--test data
insert into #formulaTableshort
(formula)
select '3 * (2 + 4)'
insert into #formulaTableshort
(formula)
select '7...
June 23, 2009 at 3:32 pm
Only as often as is required to maintain performance. Anything more is essentially using additional resources, which might be fine if you can spare them, but certainly not necessary.
Some...
June 22, 2009 at 8:00 pm
jeffrey yao (6/22/2009)
John Rowan (6/22/2009)
How can you say that you were a full time data modeler for more than a year and that you think normalization is theoretical nonsense? ...
June 22, 2009 at 7:52 pm
Jeff Moden (6/22/2009)
Brandie Tarvin (6/22/2009)
June 22, 2009 at 11:54 am
remember however that you need SA privileges to execute xp_logevent, so the mechanism isn't exactly wide open to "editing the logs". Essentially - those who have the access to...
June 19, 2009 at 1:12 pm
I like your questions Grant. I usually just add in one more, it's actually usually my first (fail is and it's time to call it quits).
"What is normalization and...
June 18, 2009 at 3:45 pm
Actually - this sounds suspiciously like some of the stuff the new DMW could do. (where DMW = 2008's version of SqlH2).
Granted - both versions the Data Management warehouse...
May 7, 2009 at 9:26 am
The recovery model doesn't change unless a script that specifically changes it.
I remember hearing about some performance/monitoring tool doing that in the past if the monitoring was being logged to...
May 7, 2009 at 9:11 am
I wouldn't be quite so optimistic. If the inserts being done look something like
insert tableA
select * from TableB
(i.e with no specific names on the destination), altering that table could...
April 22, 2009 at 2:12 pm
Viewing 15 posts - 1,876 through 1,890 (of 6,486 total)