Viewing 15 posts - 1,066 through 1,080 (of 5,103 total)
brett.davis1 (6/27/2008)
SELECT RTRIM(ISNULL(Pers_FirstName, '')) + ' ' + RTRIM(ISNULL(Pers_LastName, '')) AS Pers_FullName
, Capt_Order AS Comm_PrioritySorted
, RTRIM(ISNULL(Pers_PhoneCountryCode, '')) + ' ' + RTRIM(ISNULL(Pers_PhoneAreaCode, ''))...
June 27, 2008 at 10:39 am
zulfansari (6/27/2008)
June 27, 2008 at 10:25 am
brett.davis1 (6/27/2008)
noeld (6/27/2008)
June 27, 2008 at 10:22 am
kevin luke (6/27/2008)
June 27, 2008 at 10:21 am
Probably on the definition of either one of the tables in the view or the view itself you have exceeded the maximum row-length. The Addiditon of "order by" is creating...
June 27, 2008 at 10:16 am
SELECT a1.*, a2.TAcres
FROM TableA a1
INNER JOIN
(
SELECT acre_id, sum(acres) TAcres
FROM p_acres ...
June 27, 2008 at 10:08 am
Glad I could help!
June 27, 2008 at 9:45 am
jezemine (6/26/2008)
create table...
June 27, 2008 at 9:13 am
Right but then you continue to "articles"->"article properties", right 😉
And yes definitely that was a good catch. I never came accross this because somehow "we" listened to MS advice ;)...
June 27, 2008 at 8:59 am
KATHLEEN Y ZHANG (6/27/2008)
More questions:
1. You are right, I just tried to add the new distributor and I got 'The server 'abcd' is already defined as a...
June 27, 2008 at 8:54 am
Jason Bunn (6/26/2008)
When I use sp_addarticle to create an article:
declare @pub_name sysname
declare @sql_text nvarchar(4000)
declare @err nvarchar(500)
set @pub_name = 'Acclaim_Repl'
declare @article_name sysname;
set @article_name ='CLIENT_ADDRESS_STD_HIST'
set @sql_text = 'sp_addarticle ' +
...
June 27, 2008 at 8:03 am
KATHLEEN Y ZHANG (6/26/2008)
Currently I have a server that...
June 27, 2008 at 7:46 am
RubyRed (6/25/2008)
June 25, 2008 at 3:54 pm
Are your snapshots using NATIVE mode or CONCURRENT mode. It could be that there is a table lock ( when in native mode) that does not gets released until all...
June 25, 2008 at 1:56 pm
Viewing 15 posts - 1,066 through 1,080 (of 5,103 total)