Viewing 15 posts - 2,206 through 2,220 (of 7,429 total)
Ok I did a test and had no issues. Do you still get the error with the CREATE TRIGGER I suggested or is it something else wrong. What is happening...
March 22, 2004 at 9:14 am
What versions of SQL are you running on the box and have you installed alternate client tools at any point. Also, is this a domain account or local account and...
March 22, 2004 at 8:38 am
Oops I remember now, this is how we do it.
1) Create an Integer variable named varFlCtrl with an initial value of 0.
2) In you VBScript change the If statement that...
March 22, 2004 at 8:30 am
Try this...
CREATE TRIGGER [RecStat] ON dbo.tblMobilisationTransaction
FOR INSERT
AS
UPDATE
m
SET
RecordStatus = 'R'
FROM
dbo.tblMobilisationTransaction m
INNER JOIN
inserted i
ON
m.ServiceNumber = i.ServiceNumber
WHERE
m.MobID != i.MOBID
Also, what would you want to happen if m.MobID were...
March 22, 2004 at 7:21 am
I do find that table variables perform excellent but my datasets tend to be large so I still have to use temp tables so they get built in TempDB and...
March 22, 2004 at 5:29 am
Can you post you SP code so we can get a better idea of what you are doing. Also if your Proc name begins "sp_" you will get a CacheMiss...
March 22, 2004 at 5:26 am
SOrry but your error message isn't showing up here. Can you post the text?
March 22, 2004 at 5:20 am
Linked servers use the driver for the DB type you are connecting to and the funationality does not change for them. You also cannot write in most cases schema DDL...
March 22, 2004 at 5:16 am
Are all peices within the same scope. Same SP or in different ones, or maybe are you using dymanic SQL within you SP where the ones for the tempDB are...
March 22, 2004 at 5:11 am
Your example can there be more L and Rs or is this table fixed in size and options?
March 22, 2004 at 5:04 am
This is what I recall from SQL Server Performance.com
Don't run SQL Server on the same physical server that you are running Terminal Services, or Citrix software. Both Terminal Services and...
March 22, 2004 at 4:59 am
Do I smell a new app in the works sir?
I have looked at a few tools for this and still think they are all too high but if your market...
March 21, 2004 at 6:51 pm
Check this out (plug for me yes). http://www.sqlservercentral.com/columnists/jtravis/sp_performance.asp
March 21, 2004 at 6:47 pm
It is not an error but is generated as a warning to notify you this has taken place in case someone did without your knowledge you would know it happened...
March 21, 2004 at 3:41 pm
Well I had a nice long helpfully post but it got eaten by the post button without showing up. I will try to rewrite it later but needless to say...
March 21, 2004 at 9:10 am
Viewing 15 posts - 2,206 through 2,220 (of 7,429 total)