Viewing 15 posts - 556 through 570 (of 587 total)
Is this kind of what you are looking for? http://support.microsoft.com/kb/246133/
This is mostly for server level permissions. I believe (but have not tested) that if you do this first,...
May 21, 2008 at 2:25 pm
There are 2 ways:
1.
Add a "Notify Operator Task" to your maintenance plan. I like to drag the "failure" constraint from each of the individual tasks to go to the...
May 21, 2008 at 2:20 pm
It's all good. I'm almost certain the error was a parsing mistake in the client code, I just didn't know why MSSQL didn't throw an invalid column error instead...
April 3, 2008 at 9:40 pm
Thanks Antonio - that does explain why SQL Server thought it was something that might have been valid.
Chad
April 3, 2008 at 12:08 pm
1. My guess is that your code is passing either an empty string ('') or a zero as the value, either of which get converted to 1/1/1900 when cast...
February 23, 2008 at 8:47 pm
I have what I think is the exact same setup at home (Home Premium and Express), and I was able to create "a" 😉 database with this command:
CREATE DATABASE a
Could...
February 23, 2008 at 1:15 pm
Excellent! Just what I needed. Thanks for helping with my emergancy Matt (love your sig line).
Chad
February 22, 2008 at 11:52 pm
Here is one option:
select MIN(LowestNumber.PK)
FROM MyTable LowestNumber
LEFT JOIN MyTable NextNumber
ON NextNumber.pk = LowestNumber.pk + 1
WHERE NextNumber.PK IS NULL
I think there are probably several ways to do it, and I'm...
February 22, 2008 at 8:22 pm
You can do this - the key is in the syntax:
UPDATE
SET
FROM
WHERE
So, I think this is what you are looking for:
update publishers
set state...
February 22, 2008 at 7:56 pm
Just to clarify what I did, I think the really ugly code I wrote would handle repeating groups... John's code is much more elegant than mine if the categories do...
February 7, 2008 at 4:48 pm
Whoops! I got caught! Sorry Chris.
:hehe: MUST.... REDEEM.... PRIDE.... AT ANY COST!... :hehe:
If you have (or can create) an incrementing PK on the table, you could do something...
February 7, 2008 at 3:43 pm
'Er you go:
select CASE WHEN ROW_NUMBER() OVER(PARTITION BY Change ORDER BY CHANGE) = 1 then Change else NULL end
, Security_Identifier
, Portfolio_code
from @tblReturn
Hope this helps,
Chad
February 7, 2008 at 1:34 pm
A simple (but usually accurate) way of thinking about an index is to compare it to the index in a book or a phone book. In this case, think...
January 31, 2008 at 4:39 pm
Thank you very much for your comments and your critique. I knew the question was difficult, and perhaps meant it to be somewhat tricky (using the transaction is valid,...
January 31, 2008 at 11:11 am
Hi Maya,
Does that mean that if the IIS settings are done correctly that the integrated auth will pass through correctly? We are set up like you and since our...
January 30, 2008 at 8:07 pm
Viewing 15 posts - 556 through 570 (of 587 total)