Viewing 15 posts - 811 through 825 (of 2,904 total)
What version/edition do you have?
Run this and post the results...
SELECT ServerProperty('ProductLevel'),
ServerProperty('ProductVersion')
-SQLBill
November 20, 2006 at 3:33 pm
A CASE statement MIGHT work:
SELECT CASE WHEN drvT.Total_Sub > 0
THEN LEVEL2ID
...
November 20, 2006 at 3:30 pm
From the examples you give, and the question...I don't see what you are trying to do. You say you want to remove the values in the CalcAction column in...
November 20, 2006 at 3:15 pm
Sounds like a memory problem (not enough). How are you doing the query?
1. On the server itself or from a remote machine?
2. From Enterprise Manager, Query Analyzer or another...
November 20, 2006 at 3:09 pm
quote: Would some like to summarize the difference between a regist...
Huh??? What are you asking?
-SQLBill
November 20, 2006 at 1:10 pm
Look in Enterprise Manager, expand Management, expand SQL Server Agent. You will find jobs there. Look through them to see what they do. Find the area for DTS packages,...
November 17, 2006 at 9:31 am
I'm willing at this point to give Red-Gate and this site the benefit of the doubt. But it's going to be interesting to see what this site is like...
November 17, 2006 at 9:21 am
It's looking for capital letters and/or those specified 'special' characters.
-SQLBill
November 16, 2006 at 12:08 pm
You probably clicked 'Edit Post', the 'Reply to post' option is all the way at the bottom of the thread.
Start looking at the connections made to SQL Server (sp_who2 or...
November 16, 2006 at 12:05 pm
The issue is that a lot of the stuff happens BEFORE the select occurs. WHERE, GROUP, HAVING all occur on the whole data table before the select. So the alias...
November 15, 2006 at 4:19 pm
I would talk to your sysadmins..that's an issue with the server not SQL Server. As to why your CPU is at 100% - we can't tell you that. We...
November 15, 2006 at 4:14 pm
Congrats Steve, Andy, and Brian!
Hopefully, Red-Gate will continue to maintain the high standards you have set for this site. But if the gentleman from ApexSQL is correct, it seems that...
November 15, 2006 at 12:22 pm
You would create a stored procedure:
CREATE PROCEDURE spGetClientAddress
@FirstName VARCHAR(20),
@LastName VARCHAR(50)
AS
SELECT Address,
City,
...
November 13, 2006 at 4:09 pm
Can't do it in SQL Server. MS Access is both a front-end (application) and a back-end (database). SQL Server is only a back-end.
Create a stored procedure on SQL Server...
November 13, 2006 at 2:23 pm
What do you mean rebuild it? Was it deleted? If so, you are out of luck since you don't have a backup.
-SQLBill
November 13, 2006 at 12:20 pm
Viewing 15 posts - 811 through 825 (of 2,904 total)