Viewing 14 posts - 16 through 29 (of 29 total)
Thats the problem then, as the error message says the len function cannot be use on the data type text.
What you can do is to cast the text to a varchar...
August 15, 2006 at 3:45 am
The most appropriate method to generate a surrogate key has to depend on a number of factors such as the throughput, concurrency, data volumes and user requirements for access to...
August 15, 2006 at 3:15 am
a union query in the view should work
select ActualName from TableA t1, TableB t2
where t2.nameID = t1.Name
union
select ActualName from tableA t1, TableB t2
where t2.nameID = t1.Name2
August 14, 2006 at 10:40 am
I think there may be a css that can be modified but not sure if that includes the Document Map
August 14, 2006 at 10:35 am
Fairly simple in SQL 2005. Using BIDS create an integration services project then build the appropriate data flow. Even when there is only one file you could use a for...
August 14, 2006 at 10:33 am
its been a while since I looked at DTSrun as I am working on SQL 2005 and packages are now run with dtexec. Mind you there are similar problems and...
August 14, 2006 at 10:18 am
Installing SQL Server would work but perhaps a bit overkill. i am not sure if the dtsrun executable can be ported to another machine but it may be worth trying...
August 14, 2006 at 9:54 am
I would suggest installing a second instance as a default instance. Once you have this you should be able to detach all databases from the named instance and attach to...
August 14, 2006 at 7:57 am
By and large we are actually agreeing here Jeff though I disagree that Erland Sommarkskog is referring to an Identity column in type C. That is only there by implication.
I...
August 14, 2006 at 7:35 am
Shrinking a database file should not result in any data loss. As far as I know SQL Server will apply appropriate locks during the shrink. I have never lost any...
August 14, 2006 at 6:47 am
Ken was spot on with his post.
I also indicated there is a place for Identity columns but they should be used by design rather than default. Surrogate keys have...
August 14, 2006 at 5:56 am
If I am reading this correctly I suspect that you may have a problem here and you will need to archive the fact data associated with the months that you...
August 14, 2006 at 3:50 am
Partitioning should possibly be considered for your DW, however there is insufficient information in your post to give a definitive answer but partitioning is not really a solution for reloading...
August 14, 2006 at 3:41 am
Surely where a table has a natural key it is advisable to utilise this as the Primary Key rather then an Identity column.
Identity columns do have their uses but...
August 14, 2006 at 1:38 am
Viewing 14 posts - 16 through 29 (of 29 total)