Viewing 15 posts - 1,081 through 1,095 (of 1,109 total)
There is no aggregate function provided by SQL Server that would concatenate the fields, so you will not be able to do this with a correlated subquery. Basically for every...
August 16, 2007 at 1:43 am
Lisa,
do you have the SQL Server client tools installed on the machine from which you are having the connection problem? If yes, can you connect from this machine to the...
August 15, 2007 at 9:09 am
You would still need to join the result of the inline view in your from clause, so I'm not sure if you could avoid the left outer join this way.
Probably...
August 15, 2007 at 9:02 am
Well, Ian has already answered this question while I was typing my answer Sorry for the redundancy.
Andras
August 14, 2007 at 2:12 am
Hi James,
SQL Server 2005's parser does not like the GO statements interrupting its BEGIN-END blocks.
Removing the GOs could solve the problem. In this case your new batch will share the...
August 14, 2007 at 2:10 am
Hi Glen,
in SQL Data Compare you can customize your comparison. You can specify the columns that you want to include in the comparison, and you can specify a where clause...
August 10, 2007 at 2:31 am
Hi,
In SQL Server there are two tables that will help you inside a trigger: deleted and updated. There is no updated table, but you can see what has been updated,...
August 9, 2007 at 4:31 am
You are right, you cannot run the Upgrade Advisor for SQL Server 2005 on SQL Server 2005, even if the databases you want to check are in compatibility mode 70...
August 9, 2007 at 3:08 am
Hi Stephen,
One tool is Red Gate's SQL Log Rescue
(I've written its engine, so know this one the best. It is free, works only with SQL Server 2000, and shows...
August 9, 2007 at 2:56 am
It is a nice article. Concerning vertical partitioning I'd recommend SQL Refactor. It has a table split refactoring that takes a table, allows you to specify which columns should stay/moved/copied...
August 9, 2007 at 2:32 am
Among others it depends on what kind of index it is. If it is a non-clustered index SQL Server might as well do a table scan, and filter out the...
August 9, 2007 at 2:13 am
I'm not sure if I understand your issue exactly, but one possible cause could be that the "_" is a wildcard for the LIKE expressions. If you try to find...
August 9, 2007 at 2:08 am
Assuming, as you mention, that your column is of fixed width, and this will not change in future designs, using chars is a good idea.
Internal storage:
Varchars are stored in the...
August 9, 2007 at 1:54 am
Yes it can do this (SQL Compare 6.0 Professional). It can save an existing database schema or individual objects into files, and can read in object definitions in various formats....
August 8, 2007 at 2:13 am
I'd use a a new backup file. The reason for differential backups is to save space. You will need the full backup in order to restore the differential backup, so...
August 8, 2007 at 2:01 am
Viewing 15 posts - 1,081 through 1,095 (of 1,109 total)