Problem With Triggers Not Fireing On SQL2000
Feb 28, 2006
Hi,
I have 2 sql serveres with merge replication of some tables in a DB. On each DB, there is user triggers on the replicated tables to alter tables not replicated. For some reason these triggers don't fire when rows is replicated. This worked fine on SQL server 7.0.
Regards
Thor Milde
View 3 Replies
ADVERTISEMENT
Jun 17, 2006
Hello,
I would like to execute a sql-query on a table, but disable the triggers that whould fire on the change.
Thank you for telling me how to do this!
Regards,
Fabian
my favorit hoster is ASPnix : www.aspnix.com !
View 2 Replies
View Related
Sep 14, 2004
Ok guys I have a dts package that when I execute copies the contents of a csv file into a table called DataDump, which in turn fires off a trigger (on the datadump table) which selects the newly entered fields and inserts them into a table called ProjectLines as can be seen below
INSERT ProjectLines(HalNum,OldHalNum,ProductDesc,Vendor,VendorNum,Brand,CutterReq,PhotoReq,Barcode)
SELECT HalNum,OldHalNum,ProductDesc,Vendor,VendorNum,Brand,CutterReq,PhotoReq,Barcode
FROM inserted
Right I have saved the dts package as a .bas file and then converted that into a c# class which again all works fine, but does not fire the trigger.
any ideas guys as I have tried everything. Currently impersonating the dbo account.
Cheers
Wayne
View 2 Replies
View Related
Sep 17, 2006
i have sql2000 & sql2005 on the same machine. I am unable to register my localhost in sql2000, get an access denied error. How can I make my localhost use sql2000 database?
View 1 Replies
View Related
May 12, 2008
This isn€™t an problem as such, it€™s more of a debate.
If a table needs a number of update triggers which do differing tasks, should these triggers be separated out or encapsulated into one all encompassing trigger. Speaking in terms of performance, it doesn€™t make much of an improvement doing either depending upon the tasks performed. I was wondering in terms of maintenance and best practice etc. My view is that if the triggers do totally differing tasks they should be a trigger each on their own.
www.handleysonline.com
View 12 Replies
View Related
May 13, 2008
i am in the process of Migrating SQL 2000 to my new SQL2000 server i want to know the what would the best way for me to migrate one SQL server to another SQL server on the same network and rename the new server to the old server and bring it up for use in our ecommerce website.
View 10 Replies
View Related
Sep 5, 2006
Hi,I have made a web application using SQL Server 2005
Express with a few admin pages that require login. I used the SQL
Server Managment Studio Express to setup users and groups and it works
fine. But the web server has SQL Server 2000 and all I get is a
user id and password to access the database. It seems I cannot use the
Login control I put on my "login.aspx" page becuase it uses the
integrated authentication which chokes on 2000. I am afraid I wonlt be
able to use some of the 2.0 features such as profiles, ... Is
this the way 2.0 works with SQL Server 2000? Should I ditch the ISP if
they only give me a single access to database with no provisions to
create users. (I was told I had to create a "Users" table and manually
assign ids and passwords and that I can only use the user id and
password they supplied to setup the connection string in the script.)I appreciate your help.
View 2 Replies
View Related
Mar 8, 2001
Does anyone know when SP1 will be available for SQL2000??
Thanks,
Steve Bajada
View 1 Replies
View Related
Oct 23, 2000
Are there any advantages/disadvantages of running SQL2K on NT4 as opposed to running on WIN2K?
View 1 Replies
View Related
Jan 7, 2008
pls tell me abt log shipping in sql2000
View 1 Replies
View Related
Jul 13, 2006
I am developing a Crystal Reports App in VS2005 (VB). I was originally working on an XP machine with MSDE and stored procedures where it worked fine.
I then transferred the development to a Win2003 machine with SQL2000 and am now getting the following error;
Failed to open a rowset. Description: 'Get_Calls_By_MLO_Date' expects parameter '@DT1' which was not supplied. Plus some other error detail.
Here is the SP.
CREATE PROCEDURE Get_Calls_By_MLO_By_Date @DT1 datetime, @DT2 datetimeASSELECT MLO, CallNo, DT, Type FROM ActionsWHERE dt >= @DT1 AND dt <= @DT2 AND ActionID=1 ORDER BY MLO, DTGO
If I transfer everything back to the XP machine it works fine.
Any ideas?
Thanks
Terry.
View 3 Replies
View Related
Jun 1, 2007
How to lock a Row in SQL2000 so that nobody can select that row.
I applied ROWLOCK, but i am not finding the way.
My query is "SELECT * FROM tablename WITH (ROWLOCK)"
Is this the correct way to write locks.
I would be thankful if u help me
View 2 Replies
View Related
Apr 18, 2006
I am exporting data to an Excel file via a scheduled DTS package. I need to be able to either overwrite the existing Excel file or delete it. I haven't found a way to do this yet. Any help, comments, or direction will be appreciated. TIA
Paul
View 1 Replies
View Related
Apr 25, 2006
I want to insert some data into my SQLServer,For example:insert into xcjl(zch,xcsj) values('027741',getdate())
but ,the "zch" maybe have a few data,I want to insert these step by step,how can I do?
View 1 Replies
View Related
Feb 20, 2001
Hi all,
We're beginning to migrate our 6.5 DB's to SQL2000. A question came up regarding naming conventions for stored procedures. In BOL it says that for SQL2000:
"Stored procedures with the prefix sp_ are first looked up in master. If a user-defined stored procedure has the same name as a system-supplied stored procedure residing in master, SQL Server always finds the system-supplied stored procedure. "
Behavior in 6.5 was the opposite: SQL Server searched the current database followed by a search in master.
We started several months ago renaming user stored procedures to "usp_XXX", but we still have many non-system sp's that still use "sp_". I'm looking for opinions of whether we should bite the bullet now and rename all our non-system sp's at this time; prior to moving our production environment to SQL2000. Will we see a performance gain since SQL will not have to hit master first before going to the current DB?
Any and all opinions welcome!
Thanks,
Tom Rosebrook
EMJ
View 1 Replies
View Related
Jan 9, 2002
When bcp'ing in data into an sql 6.5 table that is NOT nullable, records in the text file that contain nulls are ommited, but valid records without nulls are inserted.
However, using exactly the same table structure and files on a newly installed sql 2000 server (sp2), as soon as the first invalid record in the text file (i.e. with a null value)is encountered, bcp'ing is terminated and NO records are inserted.
I can't find any option in bcp/sql 2000 to allow me to carry out a load as before.
The help files state that the default no. of invalid records allowed is 10 (both versions sql), and explicitly setting the -m option of bcp to 10 still doesn't work.
Most of the data i receive has at least one duff record
Is there an option in sql 2000 that allows me to have x number of duff records inserted before a full rollsback occurs?
I can't find anything in technet, msdn or books online.
View 1 Replies
View Related
Aug 7, 2001
In a replication environment:
Does SQL 2000 standard edition support replication if it would be configured as a subscriber.
Is SQL 2000 Enterprise Edition required for a Publisher and Distributor or can you get away with standard edition.
In a web site environment how many CALs are needed when users access the database via webservers and middleware.
Thanks
View 1 Replies
View Related
Jan 18, 2001
I am experimenting with the FOR XML AUTO clause in SQL2000, but instead of nicely structured XML I get one continuous string oftags that can't be parsed by IE5.5
The BOL seem to indicate just running the query in Query Analyser will produce nicely formatted XML output - can anybody tell me what is wrong?
View 1 Replies
View Related
Jan 5, 2001
I need some strong points for the management to convince them to upgrade to sql2000 now than waiting for 6 months.
We are currently in process of developing this new product. All development is on sql7. I want to upgrade our database to sql2000 now rather than waiting after the release which might be in another 3 months.
View 2 Replies
View Related
Jan 4, 2003
I crashed my HP portable that has SQL2000 ENT installed and I re-installed XP-Pro +SP1 and when I install SQL2000 ENT it refused to install saying ENT cannot install in this O/S. Did I miss anything ?
I went and checked another XP-Pro W/S and SQL2000 is intalled OK.
Anybody has any idea ?
Thanks,
Frank
View 3 Replies
View Related
Aug 26, 2002
Does a script that run with sql7 automatically run with sql2000?
I would like to know if my script will run if I change version.
View 1 Replies
View Related
Nov 26, 2003
Is it possible to fire a update trigger from SQL6.5 table to update a SQL2000 server database table field value? (upgrade this 'legacy' to sql2k now is not an option)
If it is not possible, is there a way to accomplish it?
thanks
David
View 3 Replies
View Related
Jan 24, 2002
I am trying to give developers access to use profiler without giving them sysadmin fixed role is this possible ???
View 3 Replies
View Related
Feb 4, 2002
Hi,
I noticed that when I installed SQL2000,with "typical install",
the default, the following will be used:
SQL collation (dictionary order, case-insensitive, assent sensitive)
sp_helpsort will give
SQL_Latin1_General_CP1_CI_AI
Is there any difference if I choose the "custom install", then and choose
the windows locale which gives the result of sp_helpsort:
Latin1_General_CI_AI
SQL_Latin1_General_CP1_CI_AI is supposed for backward compatibilty, so are
they actually equivalent ??
Any impact or difference we have to be aware of ??
Anyone knows..Thx
View 1 Replies
View Related
Jun 28, 2001
I will be upgrading my SQL7 Servers (SP1) to SQL2000 and NT4 to WIN2000 this year. Unfortunately, I will not be able to get new boxes to do this, so I will have to do the upgrades on the systems I have. Our network people have not yet developed a plan for the WIN2K upgrade of our entire network. I will have to upgrade the SQL Servers before they have their plan together. If I want, I can upgrade the SQL Servers to WIN2K before the rest of the network. Assuming that the WIN2K upgrade and the SQL Server upgrade can not be done at the same time, which would be the better order (and why), upgrading to WIN2K and staying at SQL7 first or upgrading to SQL2000 and staying at NT4? The primary goal is to get the indexed views to improve performance on reports and queries.
Thanks for your input.
Roger
View 1 Replies
View Related
Jul 24, 2001
Why would something perform better on SQL 7.0 than SQL 2000?
The system runs fine for about 4 hours, then we will experience across the board timeouts. After stopping and re-starting the SQL Server service, performance is great.
Microsoft is telling us we need more clustered indexes (the database IS poorly tuned, but SQL 7.0 didn't seem to have a problem without them).
Any suggestions? Things are pretty bad here.
SQL2000 sp1 Win2000 sp1 4 CPU box
View 2 Replies
View Related
Sep 13, 2001
Does anyone know of any reasons(or implications) why sql7 and sql2000 databases SHOULD NOT be on the same box???
Please advise.
Thanks-
View 1 Replies
View Related
Oct 16, 2001
I use ISA2000 +SQL2000. All log write to datebase in SQL. I need help.
I want delete all records old 40 days. I run scripts {delete from MyTable where LogTime < DateAdd(d, -40, GetDate())}, but my trunsaction log state more 1G and task stop with error.
How i can resolve this problem???
View 2 Replies
View Related
Feb 1, 2001
Hi,
I am planning to upgrade my sql7.0 with sp2 to sql2000. Pls anyone give me the steps i need to consider and give me some suggestions.
Thanks!
Kavira
View 1 Replies
View Related
Feb 8, 2001
We are beginning our research to migrate from our current SQL 6.5 and are wondering if we should migrate to SQL2000 rather than to SQL 7. First of all, is this possible or will we need to migrate to SQL 7 before migrating to SQL2000? Also where can I find good resources to learn more about the changes in SQL 7 as well as those in SQL 2000?
Any help would be appreciated.
Thanks!
View 1 Replies
View Related
Nov 12, 2004
hi to everyone,
What is faster an oracle or sql2000?
Thanks... :D
View 5 Replies
View Related
Feb 11, 2004
I am attempting a very simple bcp out to a text file in SQL 2000 for the first time. I've tried various syntax but the command consistently hangs no matter which i use. Nothing is being directed to the output log............
"bcp rfsspd..bcp_product_view out product.out -T -c -b500 -r>>test.log"
I have no problems with this command in SQL 6.5, could it be initial setup or config of 2000 or something really daft????
Any help greatly appreciated
View 1 Replies
View Related
May 2, 2008
hi
how to sendmail in sql2000
View 2 Replies
View Related