Viewing 15 posts - 601 through 615 (of 2,647 total)
Grant Fritchey (6/26/2012)
June 26, 2012 at 12:51 pm
Where are you getting this information from? There is no 10.2.XXX Only 10.00.XXXX (2008) and 10.50.XXXX (2008 R2).
June 26, 2012 at 12:45 pm
If you only have these cases, then I would do this:
IF @var <> 'A'
BEGIN
SELECT whatever
FROM table
WHERE [field]=@var
END
ELSE
BEGIN
SELECT whatever
FROM table
WHERE [field]='A' OR [field]='B'
Of course, you could flip those if you wanted,...
June 26, 2012 at 12:39 pm
There's something missing... You have to have some kind of constraint somewhere, i.e. FK, CONSTRAINT... Something is missing from the DDL you gave us. Can you check again?...
June 26, 2012 at 11:35 am
How are you resetting the settings?
June 26, 2012 at 9:27 am
Welsh Corgi (6/26/2012)
The 'StartPageRefreshDownloadedContent' property appears to contain invalid data.
I need to Remove & Reinstall Business Intelligence Development Studio 2008...
June 26, 2012 at 7:39 am
patrickmcginnis59 (6/26/2012)
sambireddy chirra (6/26/2012)
In my Requirement EmpId in Employee table have 101, same refearence table Employee_Details have 1011 (1012,1013 ) like . how it possible for the below query.
select...
June 26, 2012 at 7:29 am
Lynn Pettis (6/21/2012)
Does the table have any other...
June 21, 2012 at 2:26 pm
JeffRush (6/21/2012)
June 21, 2012 at 9:44 am
Dung Dinh (6/21/2012)
SQLKnowItAll (6/21/2012)
Dung Dinh (6/21/2012)
But if you send email to outside system (your client,...), I suggest you should use a email service for security purpose.
Can you elaborate on the...
June 21, 2012 at 9:24 am
JeffRush (6/21/2012)
Like excluding all transaction audit columns from...
June 21, 2012 at 9:21 am
Dung Dinh (6/21/2012)
But if you send email to outside system (your client,...), I suggest you should use a email service for security purpose.
Can you elaborate on the security concerns? Also,...
June 21, 2012 at 9:04 am
Prasad.N (6/21/2012)
Regarding above issue I got a answer
declare @var1 varchar(5000)
declare @table table (ColNames varchar(5000))
insert into @table
----here i doesn't want COLUMN45,COLUMN46,COLUMN35(you need to write which columns doesn't want)
select...
June 21, 2012 at 9:02 am
after looking into this a little more, my guess is that this is in the Resource database and cannot be accessed. Best not to worry about it.
June 21, 2012 at 8:22 am
Sorry, I see you have it in the subject but not in the body of your post. Seems that it always shows up in a DBCC CHECKDB when I google...
June 21, 2012 at 8:14 am
Viewing 15 posts - 601 through 615 (of 2,647 total)