Viewing 15 posts - 91 through 105 (of 205 total)
Great article, great editorial.
I'll be sharing both with my work mates.
Must be time for that holiday (and I would NEVER take my technology with me).
Thanks Andy and Steve. This is...
August 22, 2006 at 3:32 pm
do you mean before you update?
If you are inserting then there is no old value.
Select the data out before you do the update. Once you have updated it, it's gone,...
August 21, 2006 at 9:53 pm
Define what you mean by invalid?
Do you mean they reference columns or tables that do not exist?
August 21, 2006 at 7:55 pm
This is the syntax we use
ALTER TABLE tablename ADD
CONSTRAINT constraint_name ...
August 13, 2006 at 5:09 pm
Permissions is always the first place to look.
Are you logging in as the same user that you use when not remote?
I presume you could see all that you wanted when...
August 7, 2006 at 11:05 pm
I believe he was suggesting that you could use SQL_variant for both values
August 3, 2006 at 2:48 pm
You can always go looking i nthe INFORMATION_SCHEMA views that are available
SELECT *
FROM INFORMATION_SCHEMA.Columns
WHERE TABLE_NAME = 'your_table_name'
August 1, 2006 at 8:22 pm
My guess would be that you can only return a single datatype option for a given column (derived or otherwise) and the second CAST statement is taking precedence.
Also, it appears...
August 1, 2006 at 8:18 pm
The grouping idea was purely off the top of my head and not something I've actually tried, but it appears from what Dinikar had to say, you shouldn't need to...
August 1, 2006 at 6:41 pm
I can only assume it has something to do with the tutorials and samples - which I haven't looked at yet.
I would presume one of these tutorials might be related...
August 1, 2006 at 5:05 pm
No, I don't think you're doing anything wrong.
I've just had a look at one of our client production servers and can see activity in terms of file dates having been...
August 1, 2006 at 4:59 pm
From the SQL Server "Documentation and Tutorials" menu
If you did not install the samples and the AdventureWorks sample database during SQL Server 2005 Setup, you can install them after Setup...
August 1, 2006 at 3:56 pm
As I understand it :-
If you don't create a rowguidcol on your table, SQL Server will do it for you.
the Rowguidcol is the column that is referenced within the meta...
August 1, 2006 at 3:53 pm
I did a little test by updating some data - saw no change in the file.
So I bounced the sql server service and then I could see that all files...
August 1, 2006 at 3:44 pm
I did consider that it was a simplified query, but went ahead anyway.
Apparently you can tell which part of a query gets executed first from the query plan as I...
August 1, 2006 at 3:33 pm
Viewing 15 posts - 91 through 105 (of 205 total)