Viewing 15 posts - 3,781 through 3,795 (of 5,103 total)
Unfortunately any Table access performed before a rollback is lost no matter what. Nested transactions are a little bit intensive and difficult to manage because of the inherent limit of...
April 28, 2005 at 10:38 am
select 'A' as Data, count(*) from dbo.SysColumns
union ALL
select 'B', count(*) from dbo.SysColumns
Order by Data desc
is this what you want?
April 28, 2005 at 10:21 am
Ah, ussage is your promblem! this is how you are supposed to use it:
at setup time call sp_addmessage for all required languages
ex:
use master
exec sp_addmessage @msgnum = 50001, @severity = 10, ...
April 28, 2005 at 10:16 am
That (multi-lingual) is actually one of the stregnths of raiserror ! ![]()
Why are you saying that ? ![]()
April 28, 2005 at 9:55 am
This is a tricky question in which there are no Absolutes. The right anwser is "it depends on the application". I bet none of us would like to see the...
April 28, 2005 at 8:30 am
>> ... from the Weekly table and then transfer just one occurrence with the aggregated value to the Current table which does have a PK. <<
What is the PK in there? can...
April 28, 2005 at 8:08 am
--create table dates([date] datetime, shipment char(4), client char(3), nrofcollo int, Destiny varchar(20))
-- set DATEFORMAT dmy
-- insert into dates ([date], shipment, client, nrofcollo, Destiny) values ('14-01-05', '1254', '012', 1 ,'France')
-- insert...
April 27, 2005 at 3:34 pm
if you have them in both places and marked as "NOT FOR REPLICATION" in both places you need to partition or manage the value ranges at each location. In other words...
April 27, 2005 at 2:42 pm
another recomendation:
try to set lazy_schema_validation "on" for that linked server using sp_serveroption
April 27, 2005 at 1:54 pm
Melissa,
if you look at the table Email_Templates and add the maximum size that each column can have, you'll see that is more than 8060 which is the maximum recommeded value...
April 27, 2005 at 1:46 pm
Well if you can not do what Remi just posted You will need an automated tool that captures that information (Be ready to spend big $$$) You can use
April 27, 2005 at 1:31 pm
On EM
select Tools->Options and uncheck Read/Store user independent
hth ![]()
April 27, 2005 at 1:14 pm
I believe the best way is to replace the values for explicit defaults on the inserted table using isnull() but if you still want code independence (I mean if you change a...
April 27, 2005 at 1:09 pm
if that database has no FK you could
sp_MSforeachtable 'Truncate table ? '
if there are FK -- Which btw should be the expected thing
you have to find the dependencies on the tables and...
April 27, 2005 at 11:04 am
It is not overriding the identity property, it is replicating the PRIMARY KEY!
Not for replication will provoke that the data replicated (inserted) at the subscriber won't affect the value of the...
April 27, 2005 at 10:54 am
Viewing 15 posts - 3,781 through 3,795 (of 5,103 total)