Seems to me if the trigger is working using another program or utility it isn’t the trigger program logic that is wrong. I would check the authority you might be adopting in the new application to see if that is the cause. We use trigger programs here but they all run under adopted authority to [...]
Hi, I think in your case SQL replication is very usefull.. you need to choose merge replication from snashotp,transactional etc.. go throught the SQL replication funcationlity and implement it. it will help you. Best Luck. Mehul Patel
Under the server, open security, then logins. If it’s a SQL Login you can set the password here. If it’s a Windows login the password would be the domain password and has to be set by the user or the domain administrator.
You should get the same performance. JOIN is an INNER JOIN.
Your target (custmaster) and source (tnjcust) must have the same number and types of columns when you construct an INSERT statement this way. Frankly, this construction is not a good programming practice. Instead you should list the columns: INSERT INTO custmaster(x,y,z) SELECT seccode,b,c FROM tnjcust WHERE seccode=’431′
please include rownum in the select statement in and then include rownum > 3. the result will display from 3rd row.
Looks like you don’t have an ENDDO for WHEN (X=Y) tHEN(DO) Thanks for the help, I missed the EndDo statement. Once I properly placed the enddo it worked like a charm wmfsr
Yes. You can do this using the insert trigger. Select the values from the inserted table that is available in the insert trigger and insert them in the ManageAndContact table.
I meant to say Data Corruption has necessitated that we find the above scenario.
when you say VRAID1 and VRAID5 it sounds like you are talking about an HP EVA san, these sans virtualise all san volumes accross all disks within their own disk group, raid1 is faster than raid5 but not as fast as raid10. Das is fast but non useable by any other server or host as [...]
I’m SQL 2005 you can’t actualy write to the system tables, because there are no system tables any more. You will need to generate dynamic code to run the sp_addextendedproperty procedure to add the extended property you are trying to add. You can lookup sp_addextendedproperty in Books OnLine to get the full syntax of the [...]
If your encryption padds the encrypted value with filler data then yes, the join could fail as the values wouldn’t match. If you aren’t padding the encrypted value then your values should match and you should be able to do the join.
You would either need to setup a new server running SQL 2005, or install a SQL 2005 instance leaving the SQL 2000 instance. Then detach the databases from the SQL 2000 instance and attach them to the SQL 2005 instance. Be sure to do full testing to make sure that there won’t be any issues [...]
There is no way to write a trigger which will fire when reads are done. You can create a trace using SQL Profiler which will log all of the commands which are executed. You can have all this logged to a table, and then parse the field with the actuall command (called text) to get [...]
Yes you can do this within SQL Server. Make the user the owner of the schema, and grant them the control right over the schema. This will give them the ability to grant other users rights to objects within there schema, as well as give them the ability to create objects. You can also create [...]
This will be because the first time you connect the database has to be opened and the information that you are looking for loaded from disk into memory. This is called caching the data. SQL caches as much data as possible into it’s buffer. The more often the data is needed the longer it will [...]
Have you called Update on the data adapter? e.g. customersTableAdapter.Update(northwindDataSet.Customers); from msdn
For Sharepoint try: https://Computername:444 or https://IP Address:444 For Remote Web Workplace: https://Computername/remote or https://IP Address/remote Thats how my non domained users access it. Hope this helps, Paul
It depends on your DBMS and OS. Can you be more specific?
Look at the cache_level series of function calls. Bob





