Viewing 15 posts - 1,756 through 1,770 (of 2,267 total)
Schadenfreude-Mei (12/5/2008)
According to the instructions from the BlackBerry web site, for DR purposes you have to setup Transactional Replciation (there is a script to run...
December 5, 2008 at 10:28 am
Ninja's_RGR'us (12/4/2008)
JohnG (12/4/2008)
December 4, 2008 at 10:33 am
try writing it like this;
SELECT DISTINCT t1.Col1, t2.Col1
FROM Table1 t1 LEFT OUTER JOIN Table2 t2
ON (t1.Col1 = t2.Col2)
WHERE t2.Col1 is NULL
December 4, 2008 at 10:09 am
I had a similar problem a few months ago and wanted a solution that did not involve editing the noise-word list. What we ended up doing was to create...
December 4, 2008 at 9:52 am
If you are using a stored proc for all the inserts against the table, then it would be better to modify this procedure to check the number of records rather...
December 4, 2008 at 7:12 am
You should use a data-conversion transformation instead of the script, as this date is in a standard format the data-conversion will re-direct any rows that are not valid dates....
December 4, 2008 at 5:20 am
what is the error that you are getting?
December 4, 2008 at 5:14 am
It means that the value that you are passing can be a Unicode string, it is not really needed unless you are using Unicode
December 4, 2008 at 2:46 am
You want to use UNPIVOT for this,
If you post your exact table structures and some sample data, then I can provide some code that should work
December 3, 2008 at 10:53 am
nazaninahmady_sh (12/3/2008)
but for examination your previouse help i want to write an after Trigger ,please help me.thanks
As it is for an examination, how about you show us how...
December 3, 2008 at 9:42 am
Carla Wilson (12/3/2008)
December 3, 2008 at 7:41 am
This does look like an SQL account issue, to get mirroring to work you will need to either run your SQL servers with a domain accout, or...
December 3, 2008 at 7:17 am
you can use
INSERT INTO [Destination] (id ,title ,body)
SELECT id ,title ,cast(body as varchar(max)) from [Source]
Though I think that the data conversion may not be needed as it should do this...
December 3, 2008 at 7:12 am
pri.amin (12/3/2008)
You are correct it has been asked before but the issue has progressed!!I am asking where is it best to change the DataType??
In the View or in the Table?
If...
December 3, 2008 at 5:39 am
Viewing 15 posts - 1,756 through 1,770 (of 2,267 total)