Viewing 15 posts - 1,681 through 1,695 (of 2,268 total)
this question has also been asked and answered here;
http://www.sqlservercentral.com/Forums/Topic634281-1291-1.aspx
January 12, 2009 at 9:46 am
Depending on how big your database is, you could write a SSIS package to copy all the database objects across.
January 12, 2009 at 8:48 am
It is because you are using nvarchar(max) datatype which is effectivly a Text datatype or a blob and these have their own limits.
If you are only inserting 10 characters then...
January 12, 2009 at 4:43 am
No worries, glad that it worked out for you.
Collation affects the way that string values are sorted and compared and can sometimes can cause funny issues.
December 31, 2008 at 8:45 am
Check the properties of the database (right click), have a look at the collation setting.
Check the properties of the table --> Extended properties, have a look at the...
December 31, 2008 at 8:32 am
It looks like your collation settings for the table are different than that for the database, check that these are the same.
December 31, 2008 at 8:07 am
This is fairly straight foward in SSIS, you can even run the SSIS import-export wizard to get you started.
Is there something in particular that you are struggling with?
The best place...
December 31, 2008 at 7:30 am
You should really store all the same data in the same table, having a new messages table for each user will cause massive headaches in the future.
5,000,000 rows...
December 31, 2008 at 7:25 am
You are trying to use a Varchar variable with a smalldatetime paramater, this will not work. you either need to change the varaible data type to smalldatatime, ...
December 31, 2008 at 7:21 am
The easiest ways are to either use restore from backup to the new server,
or dettach the database and attach it at the new server
If you are unable to do...
December 30, 2008 at 10:49 am
I am assuming that you are using the microsoft ORACLE ODBC driver?
If this is the case then this driver does not have the ability to handle LOBs.
You would better off...
December 30, 2008 at 10:27 am
It would depend what is contained within the CLOB.
The direct equivalent in SQL is a binary data type, but if the information in the field is pure text then...
December 30, 2008 at 10:12 am
if you are looking for the script that create '5GSMM20000K0' as your primary key, then that is not the right one. All that does in define the column in your...
December 30, 2008 at 8:28 am
If you do a select * then you are asking sql to return all the columns on the table. If the Index only has the one column...
December 30, 2008 at 8:22 am
Tony (12/30/2008)
December 30, 2008 at 8:07 am
Viewing 15 posts - 1,681 through 1,695 (of 2,268 total)