Viewing 15 posts - 5,341 through 5,355 (of 5,355 total)
Hi,
are you sure you have the appropriate rights to install on the network?
I remember having these problems. To install mdac you must be least local admin I think.
Cheers,
Frank
April 14, 2003 at 5:29 am
Hi,
I don't think the VB app "knows" anything about the trigger.
This is SQL Server internal. So the connection will likely not wait till the trigger is finished. If you...
April 14, 2003 at 4:55 am
Hi,
are you doing this within a transaction? If so, could it be that you need to reset the Err.Object to 0 before updating the table?
Cheers,
Frank
April 11, 2003 at 8:29 am
hi,
a good starting point is DBCC CHECKDB <db_name> Also take a look at DBCC in BOL.
Good luck
Cheers,
Frank
April 11, 2003 at 7:21 am
Hi,
why not use a combination of DATEPART(quarter, <your_field>), and sum
like
SELECT DATEPART(quarter, period) AS Quartal, Sum(composite) as Summe
FROM ....
GROUP BY DATEPART(quarter, period)
ORDER BY ...
This assumes that period is a...
April 10, 2003 at 9:10 am
If you back up your log-files, maybe you can have a look at the size of the files.
I back up log files each hour. If nothing happens to the db...
April 10, 2003 at 8:39 am
an identity field seems to be always a good choice (at least as primary key).
do you want to select the last 10% records added to the table. maybe...
April 10, 2003 at 3:35 am
Hi,
there are many pros and cons about storing binary data in a db vs. using the filesystem and I have seen on other forums quite philosophical discussions about this. I...
April 9, 2003 at 3:13 am
Take a look at 'xp_cmdshell' in BOL This should be what you need
Cheers,
Frank
April 8, 2003 at 6:07 am
It is getting REALLY interesting, when you're playing with DDE and realtime quotes and calculations and databases }:-) You can get very easily a server down to its knees. That's...
April 4, 2003 at 7:04 am
Hi,
I'm working as an asset manager for an insurance company. We're doing a lot of performance calculations and from my experience this is a classical case for a spreadsheet application....
April 4, 2003 at 1:39 am
Sorry, if I expressed myself unclear. The following is an excerpt from BOL
...Two special tables are used in trigger statements: the deleted table and the inserted table. Microsoft® SQL Server™...
April 3, 2003 at 1:46 am
I'm also using triggers for insert and update (delete is not permitted) to audit changes to certain tables. But I'm using the inserted and deleted Tables. Are there any advantages...
April 2, 2003 at 12:27 am
Viewing 15 posts - 5,341 through 5,355 (of 5,355 total)