Viewing 15 posts - 3,631 through 3,645 (of 6,679 total)
You are not going to like the answer - but, using Enterprise Manager to open a table and edit it is the problem. That GUI is broken, and -...
August 29, 2010 at 2:10 pm
You do that in the report itself. There is an option on the column properties to suprress duplicates which is what you are looking for.
August 29, 2010 at 2:03 pm
Steve Jones - Editor (8/29/2010)
Polyserve is the only software I'm aware of that's like this.
That is the only one I know of that was specifically designed for SQL Server. ...
August 29, 2010 at 10:43 am
A SQL Farm would be some type of cluster where you install and manage multiple instances. You can do this with standard Microsoft clustering, but - this can be...
August 29, 2010 at 9:58 am
How is the data actually stored in that column and what is the data type of the column?
August 29, 2010 at 9:34 am
I don't know where the * would be used in SSRS, unless you are using built-in functions.
As for the queries, the wildcard that you have won't match if the name...
August 28, 2010 at 8:05 pm
The asterisk '*' is not a wildcard character in SQL Server. The % is the wildcard that means match any characters.
Lookup LIKE in Books Online for the different wildcard...
August 28, 2010 at 1:54 pm
In SQL Server 2005 and above, maintenance plans are now stored as SSIS packages. The connection information is stored within the package.
So, your only option is to delete the...
August 27, 2010 at 10:49 pm
WayneS (8/27/2010)
select [StartOfYear] = DATEADD (year, datediff(year, 0, getdate()), 0),
[EndOfYear] = dateadd(day, -1, DATEADD(year, datediff(year, 0, getdate()+1), 0))
Reporting Services...
August 27, 2010 at 10:37 pm
In addition to what Gail stated, after you offline the database - you need to alter the database and modify the filename, then copy the physical files to the new...
August 27, 2010 at 10:35 pm
You need to put parentheses around your select statement:
DECLARE @FValue varchar(50)
SET @FValue = SELECT count(SomeField) FROM ADifferentDatabase.dbo.SomeTable
Should be:
DECLARE @FValue varchar(50);
SET @FValue = (SELECT count(SomeField) FROM ADifferentDatabase.dbo.SomeTable);
Or, you can change this...
August 26, 2010 at 3:47 pm
Are you talking about the default database defined for a login? If so, then you are going to get different answers.
Setting the default database to the user database will...
August 26, 2010 at 1:20 pm
Gail's suggestion works - and might even be the best option. However, there is no reason why you couldn't create your objects in another database to work with the...
August 25, 2010 at 3:55 pm
You can use sp_change_users_login to fix orphaned users. There are different parameters - so you'll need to look it up in BOL for the exact parameters you'll need.
August 24, 2010 at 4:35 pm
As the error states, create/alter procedure must be the first statement in the batch. In your dynamic query, you need to separate the USE from the CREATE/ALTER with a...
August 24, 2010 at 4:26 pm
Viewing 15 posts - 3,631 through 3,645 (of 6,679 total)