Viewing 15 posts - 1 through 15 (of 248 total)
You can use the unpivot operator in SQL Server 2005 to do this:
declare @config table (id int, name varchar(10), type varchar(10))
declare @vehicle table (id int, make varchar(10), model varchar(10), color...
April 4, 2007 at 6:38 am
I believe that is true - both reporting services and notification services are not cluster aware and need to be installed on both the nodes separately.
January 9, 2007 at 4:34 am
Read up BOL for fn_get_sql() (this was introduced in SP3 for SQL 2000).
July 17, 2006 at 9:03 am
There is a lot of good information regarding waitresource on this site - you can search for it, here is one URL from a previous discussion on the same topic...
July 17, 2006 at 8:59 am
As Jaideep mentioned, this is a datetime data-type. You can use the CONVERT function to do manupulations on it.
June 28, 2006 at 6:03 am
DECLARE @T1 TABLE (A INT, B INT, C INT)
INSERT INTO @T1 VALUES (4955, 123, 100)
INSERT INTO @T1 VALUES (4955, 123, 200)
INSERT INTO @T1 VALUES (4955, 124, 100)
INSERT INTO @T1 VALUES...
May 19, 2006 at 2:56 pm
If you cannot modify the insert statement from the feed because it is not under your code control, you can have an interface table in which the feed inserts the...
May 16, 2006 at 5:17 am
Ok - if that is the case, then you do not need to have LocationID in the CLIENT table. The relationship is 1:N then instead of M:N. So, you will...
May 15, 2006 at 3:22 pm
You have two logical entities : Client and Location. These two have a many-to-many relationship between them since a client can have 1-N locations and a location can be serviced...
May 15, 2006 at 2:22 pm
ROWID has no equivalent. ROWNUM can be simulated and the above link gives you some of those options.
May 6, 2006 at 4:02 pm
(CASE
WHEN CLIENTBOXNUMBER IN ('0096028', '0096076') THEN '0096064'
ELSE ''
END)
May 4, 2006 at 7:48 am
PL/SQL is Oracle lingo...SQL Server's language is T-SQL.
If your stats are up-to-date, then you can do this:
select substring(o.name, 1, 30) Table_Name ,i.rows Number_of_Rows
from sysobjects o
inner join sysindexes i ...
May 2, 2006 at 8:57 am
You can use DTS and set global variable values based on the select from the table and then just use the "Execute Process Task" to run the command for copying...
May 2, 2006 at 8:55 am
Can you post the schema definition, some sample data for this issue ?
Is EFF_DTE a datetime/smalldatetime data-type column ? If so, then it has to "exactly" match in all those...
April 20, 2006 at 8:13 am
Viewing 15 posts - 1 through 15 (of 248 total)