Viewing 15 posts - 31 through 45 (of 56 total)
about Writing Truncate only i should open a new quer and write
Truncate Servername.Databasename.dbo.Tablename
in it ?
December 23, 2008 at 1:10 am
TRUNCATE is a non-logged operation, so if you are using log shipping or have regular log backups running, it can cause you some issues.
sorry what do you mean by...
December 23, 2008 at 12:07 am
i want to remove all rows , then modify my table deign, how can i use Truncate?
December 22, 2008 at 8:16 am
sorry
the correct name are:
ServerA.Source.dbo.Table1
and ServerB.Destination.dbo.Table2
but what should i do about the modifyng those 2 fileds
December 16, 2008 at 6:21 am
thanks
i think i have to use (CAST) for transfering because in Destination the data type of Body is nvarchar(max) and in the Source it is ntext ,
a T_Sql...
December 16, 2008 at 6:03 am
Thank you all,
This Trigger works successfully:
alter TRIGGER [TRG993]
ON [dbo].[Source]
AFTER INSERT
AS
BEGIN
SET...
December 16, 2008 at 5:50 am
Thank you very much,
would you please help me to write a T_SQL block for transfering data from one table in one data base to another table in another data base?...
December 4, 2008 at 7:34 am
Thank you very much,
the Trigger is working ,
but how can i become sure about this Trigger transfer all of my data in Source table in field that its type...
December 4, 2008 at 4:03 am
" You'll need to join the inserted table to the source table"
please help me how
and write for me that if i do so may i to transfer data from a...
December 4, 2008 at 3:50 am
Thank you for your reply
when i used from (inserted)
this error mesage came:
Cannot use text, ntext, or image columns in the 'inserted' and 'deleted' tables.
December 4, 2008 at 3:00 am
but for examination your previouse help i want to write an after Trigger ,please help me.
thanks
December 3, 2008 at 9:31 am
yes , i have problem when i want to do this conversin through SQL, because ntext is pointer az i told you it save my data in different places not...
December 3, 2008 at 9:28 am
Viewing 15 posts - 31 through 45 (of 56 total)