Viewing 15 posts - 181 through 195 (of 244 total)
does this assume that an insert is taaking a page level (or higher) lock?
June 18, 2006 at 2:15 pm
'Of course blocking could be reduced if you don't have a clustered index on an IDENTITY column....)'
Why?
June 18, 2006 at 1:00 pm
for sheer amount and complexity of data it has to be cricket
June 9, 2006 at 5:17 am
alter schema transfer table to DBO
fixed it in the end.
Thanks,
'Jules'
June 9, 2006 at 5:14 am
Unfortunatly its a windows NT login that has got out of sync and this sp doesnt update them. the code below coems from that SP. Any Ideas?
-- VALIDATE PARAMS -- ...
June 9, 2006 at 3:51 am
Yep but cant update sys tables in sql9.
this wopnt work anymore
update
u
set sid = l.sid
from
...
June 9, 2006 at 2:40 am
Yep the user name and password are checked in dynamic T-SQL this is because the DB they are in is passed in as a parameter.
But a structure like
CREATE PROCEDURE search_orders...
June 8, 2006 at 6:22 am
'A temp table is a DB object in tempdb, much different than a locally scoped variable'
If enough data goes into a table variable it will create an object in tempdb....
June 7, 2006 at 1:31 pm
Getting the aggregates into table variables rather than using sub selects will probably improve things but cant see quite how to do it without knowing the format of the sql...
June 7, 2006 at 1:11 pm
Yep Thanks. of course the hint is in the name 'Tabke VARIABLE'.
WQas reading the thread in responce to the recent article on temp tables where the general concensus is...
June 7, 2006 at 12:35 pm
Code below illustrates one other difference between temp tables and table variables. That that dynamic sql can see temp tables created by calling script but cant see table variables. Presumably...
June 7, 2006 at 11:09 am
cant delete user in current db as it is referenecd by a schema.
need to delete or change schema first which means i must remove the schema from all db objects....
June 7, 2006 at 5:00 am
figured it out anyway.
Well enough to know that its still not air tight. You create a project and then have to script all your objects out into seperate files...
June 6, 2006 at 7:50 am
Access the report server via the web and click on the report builder tab
the url should be somethign like //localhost/reportserver/
June 5, 2006 at 3:29 pm
This is an odd behaviour but i think your problem is the ANSI_NULLS and ANSI_WARNINGS setting under which the trigger was created and not the setting as set within the...
June 3, 2006 at 9:36 am
Viewing 15 posts - 181 through 195 (of 244 total)