Viewing 15 posts - 796 through 810 (of 5,103 total)
Bob Hovious (12/29/2008)
At least this one didn't have URGENT URGENT URGENT in the topic header. 😛
Good Point!
December 29, 2008 at 11:20 am
Are the publisher and subscriber the same version?
There could be issues when you use 2000 vs 7 vs 2005...
December 29, 2008 at 11:15 am
Ha! I didn't follow the link so I have a deserved "Ooops!" Cross-posting hits again!
December 29, 2008 at 10:46 am
I know I am going to get some heat because of it but hey USA is a free country.
declare @user_id int
select @user_id = 2
;with cte
AS
(
select b.id, b.parent_id, b.name as...
December 29, 2008 at 10:41 am
I guess it wants you to update the driver too.
December 23, 2008 at 3:09 pm
Because OUTER joins are NOT allowed on indexed views you are probably out of luck.
Now, You could create an indexed view on each and then use a "normal" view to...
December 23, 2008 at 3:01 pm
Sounds like a reindex issue, post back after you finish reindexing...
December 23, 2008 at 2:53 pm
u5andy (12/23/2008)
I'm not all that well versed in SQL and I'm brand new to SQL Server. I'm trying to speed the following code up:
DECLARE @TMP_INCREMENT_DATES table(q varchar(255))
INSERT INTO @TMP_INCREMENT_DATES
...
December 23, 2008 at 2:46 pm
You may want to revisit those large tables and cluster them. DML performance change significantly with table size and MS recommends to cluster them
December 23, 2008 at 10:20 am
ON UPDATE CASCADE is a property of a ForeignKey you should be able to DROP+CREATE the FK constraint.
What error are you seeing ?
December 23, 2008 at 9:55 am
dva2007 (12/23/2008)
declare @file as varchar(100)
set @file = '\\server01\wcl\Extracts\Executive\LOS-export' + convert(varchar, datepart(yyyy,getdate())) + '-' + right(('0' + convert(varchar, datepart(mm, getdate()))),2) + '-' + right(('0' + convert(varchar, datepart(dd, getdate()))),2) +...
December 23, 2008 at 9:52 am
jeffrey yao (12/16/2008)
But I am still trying to understand why the transaction isolation level plays a role here. Before a connection is established, there is no isolation level to...
December 23, 2008 at 9:41 am
The exported code is the culprit \x0D in character format won't be interpreted by SQL Server as as CR. You need actual CR exported.
December 22, 2008 at 3:38 pm
Thanks for the clarification.
Here are some things to check for:
- check for "blocking" ?
- Do you have an idea for how many indexes you have on the heaviest written table...
December 22, 2008 at 3:35 pm
Is the index in ColD being used ?
Is the server overloaded ?
Can you post the execution plan ?
Can you post the DDL of the table ?
.... Too many questions ......
December 22, 2008 at 3:08 pm
Viewing 15 posts - 796 through 810 (of 5,103 total)