Viewing 15 posts - 6,976 through 6,990 (of 7,191 total)
Robert
Or create a view of the two joined tables and update that?
John
July 11, 2006 at 8:55 am
Reet
What I'd say about indexed views is that just because you can create one, it doesn't necessarily mean you should. In my opinion, it's more important to have proper indexing...
July 11, 2006 at 7:06 am
Jules
Unfortunately that won't work. From Books Online (Creating an Indexed View):
The SELECT statement in the view cannot contain these Transact-SQL syntax elements:
.
.
.
This is...
July 11, 2006 at 6:34 am
Reet
Just a few ideas:
What indexes do you have on the seven underlying tables? Look at the execution plan of the query and look for table scans or clustered index scans. ...
July 11, 2006 at 4:14 am
Jakub
You can't insert the results into a table, because the procedure returns more than one result set. And you can't do a UNION of the results for the same reason.
As...
July 11, 2006 at 4:03 am
Neil
Create a login, say WebUser, give it access to the database, put it into a role, say WebRole, and grant WebRole execute permission on each store procedure. You do have...
July 10, 2006 at 8:08 am
Wayne
(1) You could set up master and target servers so that all jobs are defined on one server. Then you could combine the two jobs into one, with the execution...
July 7, 2006 at 9:14 am
You could use roles instead of assigning permissions to individual users. Then all you need to do is assign the permissions to the role, put the new user in the role...
July 7, 2006 at 8:52 am
And what better way of doing so than calling on the help of members of this community?
July 7, 2006 at 7:53 am
Terence
Before you implement this, search for other discussions on this topic. There is a gotcha with this type of approach. If you will be updating this table at the publisher...
July 7, 2006 at 7:31 am
You'd have to test the impact of taking transaction log backups every 20 minutes. I would be surprised if it had a noticeable effect on performance, though. Don't forget that...
July 7, 2006 at 2:41 am
Happy to help - can't explain the Microsoft thing, though!
John
July 6, 2006 at 1:13 pm
Jon
From Books Online:
char[(n)]
Fixed-length non-Unicode character data with length of n bytes. n must be a value from 1 through 8,000. Storage size is n bytes. The SQL-92...
July 6, 2006 at 3:54 am
Is it possible that one of the other triggers on the table is removing the updated data?
John
July 6, 2006 at 3:45 am
The answer to your question is I don't know whether it's actually possible. But even if it were, I wouldn't want to do it. You'd have performance issues with transmitting...
July 6, 2006 at 3:07 am
Viewing 15 posts - 6,976 through 6,990 (of 7,191 total)