Viewing 15 posts - 2,566 through 2,580 (of 5,103 total)
Sorry I coudn't get back earlier.
To make the long story short it is the conversion to Unicode what messes up the data because 'Œ' is not part of the...
October 18, 2005 at 3:38 pm
If the "real-time" part is "very real" you have no choice but replication!!!
October 18, 2005 at 12:52 pm
Usually this kind of maintenece is performed with Jobs. If you can query job status and next run date/time you should be able to aviod the contention
October 18, 2005 at 12:49 pm
The Message is loud and Clear ![]()
An explicit value for the identity column in table 'Employees' can only be specified when a column list...
October 18, 2005 at 12:20 pm
SET @sSQLCmd='
update sv
set sv.SupplierInternalKey = t.SupplierInternalKey,
sv.PublicationStatus = 1
from [' + @sServerName + '].[' + @sDbName + '].[dbo].SupplierItemAttributeValue sv, #MainSupplier t,
(select ChangeLink, store
from #emsstores...
October 18, 2005 at 12:03 pm
Couple of questions:
What is the data type of "shipto"?
What is the Collation of your database ?
October 18, 2005 at 11:47 am
Update Yourtable
Set FName = Left(File_ext,Charindex('.',File_ext)-1),
EXt = right( Rtrim(File_ext),3)
![]()
October 18, 2005 at 9:58 am
DECLARE @SQLStatement2 NVARCHAR(255)
DECLARE @Myvar int
select @SQLStatement2 = 'select @Myvar = low FROM [' + @servername + '].master.dbo.spt_values WHERE number = 1 and type = ''E'''
exec sp_executeSql @SQLStatement2, N'@Myvar...
October 18, 2005 at 9:42 am
The statement you are trying to run returns a recordset and... you are trying to save a bunch of records in an integer variable?
October 18, 2005 at 9:03 am
Eric,
Are you actually executing the statements with the commented part or are they just compiled in a stored proc?
also can you post the DDL of "DW.dbo.DIMPromotion" and "#DimPromotion"...
October 18, 2005 at 9:00 am
Yo need to move the connection out of process. There are two possible solutions to this kind of problems.
1. Implement it with DMO instead of OpendataSource.
2. Use a job to...
October 18, 2005 at 8:42 am
October 18, 2005 at 8:15 am
The article is good but I think is overcomplicating the solution. Greg Larsen's Article besides using an undocummented feature is also missing a simple posibility:
select *
from openrowset('SQLOLEDB',
'Trusted_Connection=yes; Initial...
October 18, 2005 at 8:05 am
Sean,
Once Again!
October 17, 2005 at 4:22 pm
Viewing 15 posts - 2,566 through 2,580 (of 5,103 total)