Viewing 15 posts - 2,746 through 2,760 (of 5,103 total)
Personaly I had the oportunity to work with a billion row (1000000000) database tables before. Yes Partitioning was used but on the SAME Server!
Becareful with splitting that into multiple servers and...
September 14, 2005 at 2:40 pm
September 14, 2005 at 2:26 pm
do you mind to write: SET NOCOUNT ON at the begining of the procedure ?
September 14, 2005 at 2:21 pm
I don't use NetApp but as far as I know NAS has very limmited support in SQL Server! ![]()
Take a look at: Support for Network Database...
September 14, 2005 at 2:09 pm
The alternate background is very easy to create by simply specifying in the format event the background color. In your case all you need to do to keep a boolean...
September 14, 2005 at 1:35 pm
Don't have a lot of time to speed this up but at least is going to give you what you need:
select item_id,( select count(distinct prod_id )
from prod p1
where...
September 14, 2005 at 1:27 pm
Robert,
1. Triggers should ALWAYS be coded to handle Multiple row insertion/delete/update
2. I see a pattern in your code so I believe you can probably arrive to formulas directly from the...
September 14, 2005 at 12:39 pm
USE MSDE!
1. Its free
2. Link each mdb as linked servers
3. Write your queries in sql !
September 13, 2005 at 10:23 am
Just check the procedure:
css_ety_id_children
If if uses an insert exec in it you can't nested on the outer like:
insert into #tmpgetety01 exec css_ety_id_children ...
September 13, 2005 at 9:54 am
The error is pretty clear:
You Can not nest insert exec commands
In other words: if p1 uses insert exec in it the following is not allowed
create proc p2 as
insert exec...
September 13, 2005 at 9:45 am
September 12, 2005 at 3:52 pm
exec sp_helprolemember @rolename = 'db_owner'
exec sp_helpsrvrolmember @srvrolename ='sysadmin'
exec sp_helpsrvrolmember @srvrolename ='dbcreator'
![]()
September 12, 2005 at 3:49 pm
Viewing 15 posts - 2,746 through 2,760 (of 5,103 total)