Viewing 15 posts - 16 through 30 (of 63 total)
Satish,
You do not have to create the "inserted" table. SQL Server creates this temporary table itself to handle the data that pertains to your inserted trigger. You can...
August 28, 2001 at 1:07 pm
One simple way of doing this is to create an archive table for your production table (Messages in this example), and set a delete trigger on your production table to...
August 28, 2001 at 12:52 pm
It's good to know the dirty secrets of the application; however, you can get 1GB of ram for under $200. www.pricewatch.com
August 28, 2001 at 10:12 am
Is the purpose of your replication setup to have C and B synchronized, and you are using A as a "staging" database?
August 26, 2001 at 6:40 pm
You can use the JobServer object to check the status of the agent.
Dim oServer As SQLDMO.SQLServer
Dim oJobserver As SQLDMO.JobServer
Set oServer = New SQLDMO.SQLServer
oServer.LoginSecure = True
oServer.Connect...
August 24, 2001 at 12:00 pm
You might want to check your permissions on the tables, although if the problem is not consistent, then it might be locking, a network issue, or something out of your...
August 24, 2001 at 11:08 am
I agree with Andy as well... but am I to understand that you have normalized the addresses to the point where the city of Greenville will have the same ID...
August 22, 2001 at 9:06 pm
You are correct in your assumption that they are conflicting. The way you have it set up, the update trigger is getting executed every time you do an insert....
August 22, 2001 at 8:59 pm
I was unable to duplicate the error. I got the same error that Andy did when using QA in grid mode. I'll see if we still have an...
August 22, 2001 at 7:29 pm
The server pause should work. You can do it programmatically through DMO, using the server object and its "pause" and "continue" methods.
Sean
August 22, 2001 at 6:59 pm
You can identify the version of SQL you are conencted to through the Properties collection of the Server object (start by using the latest DMO to query the server).
August 20, 2001 at 4:06 pm
You can use the SizeInKB property of the Database2 object to get a more accurate measure of the DB size. The Size property of the Database object returns a...
August 20, 2001 at 3:40 pm
I'll run a few more tests. Let us know if you figure it out, or come up with any work-arounds.
August 16, 2001 at 8:00 pm
Thanks for the feedback. It's important that we get the final outcome to these topics. Other readers find a lot of vlaue in knowing "the rest of the...
August 16, 2001 at 7:50 pm
Do you care what the value of the data is? If not, one option (slightly more expensive) is the uniqueidentifier data type and the newid()...
August 14, 2001 at 8:01 pm
Viewing 15 posts - 16 through 30 (of 63 total)