Viewing 15 posts - 18,901 through 18,915 (of 18,923 total)
What we do here is put the .adp on a shared folder. Then every morning a batch file is executed from the user pc and the files are copied...
August 31, 2004 at 6:22 am
BTW I would be interested to know what's the final speed compared to the original trigger you posted... I curious to know how much of a difference that makes (the...
August 26, 2004 at 2:44 pm
I think you could make it even faster... I noticed that you are joining deleted to inserted on every update query. What you are doing is asking sql...
August 26, 2004 at 2:39 pm
I can think of 2 things, 1st you could try updating 100 rows at time to see if the update trigger actually works and if the time required is lower....
August 26, 2004 at 6:43 am
Those are system generated indexes (or statistics.. maybe someone else could clarify this). As far as I understand they are generated when a where condition or order by is...
August 24, 2004 at 6:49 am
I've also seen this error accur in many different situations. But most of the time for me it was a faulty SP as the data source of the form...
August 18, 2004 at 6:51 am
btw if you are planning on using this on huge tables (1 M + rows), you can also disable the triggers, constraint, foreign keys and indexes to do the bulk...
August 17, 2004 at 12:01 pm
That's why I was suggesting the openrowset, because what you do is force sqlserver to make the inner join instead of coding it yourself (which is exponentially slower as you...
August 17, 2004 at 11:35 am
I can't tell you what's wrong wit your script... but I can give you another way of doing this which would be much faster than ado..
I assume you can use...
August 17, 2004 at 6:54 am
Sorry... I missed that part of the post but I'm glad the query could help you.
August 17, 2004 at 5:22 am
This will also retrieve the indexes of the indexed views and also tell you if the index is a primary key.
SELECT O.Name AS tbl_name, i.name AS...
August 16, 2004 at 6:48 am
if exists (Select * from dbo.sysobjects where name ='Teams' and xtype = 'U')
drop table Teams
create table Teams(team_id int IDENTITY (1, 1) not null primary key, team_name varchar(50) not null)
if exists...
August 12, 2004 at 9:52 am
Come on guys I'm not even a DBA and I know this one. I built a little software that queries pretty much every major system table to extract information...
July 15, 2004 at 7:31 am
I'm glad I'm not the only one who thinks this isn't a fair question... at least I learned something new today.
July 9, 2004 at 6:30 am
I found the solution... Sqlserver was a named instance using a domain account so I just changed to local info to : REMI\Dev and it worked like a charm...
That's 1...
July 9, 2004 at 6:20 am
Viewing 15 posts - 18,901 through 18,915 (of 18,923 total)