Viewing 15 posts - 8,896 through 8,910 (of 26,490 total)
r_slot (1/24/2013)
SQL Server 2012
What I think you were asked is what formula you are using to compute age, not what version of SQL Server.
January 24, 2013 at 7:12 am
Still confused, how do you know that the value you want is in the column named ALIAS_ID? I can see how you find the column you want to query...
January 24, 2013 at 6:50 am
achtro (1/23/2013)
[USER_ID] [varchar](50) NOT NULL,
[EFFECTIVE_DATE] [datetime] NOT NULL,
[END_DATE] [datetime] NOT NULL,
[LOCATION_ID] [int] NOT NULL,
[TM_ID] [int] NOT NULL,
[ALIAS_ID] [int] NOT NULL,
[TM_GUID] [varchar](50) NULL,
CONSTRAINT [PK_ALIAS_TYP] PRIMARY KEY CLUSTERED
(
[ALIAS_ID]...
January 23, 2013 at 10:10 pm
Scott Anderson-466019 (1/23/2013)
January 23, 2013 at 9:31 pm
Nope, still confused. Perhaps if you took the time to read the first article I reference below regarding asking for help and provided us with DDL (CREATE TABLE statement(s))...
January 23, 2013 at 9:18 pm
You may want to read this: http://msdn.microsoft.com/en-us/library/76fb3eca-6b08-4610-8d79-64019dd56c44.
You use the listener as part of the connection string from what I just read. Can't help beyond this as I don't have...
January 23, 2013 at 9:13 pm
emile.milne (1/23/2013)
If I want to tweak the index for reports they...
January 23, 2013 at 8:52 pm
MyDoggieJessie (1/23/2013)
DECLARE... January 23, 2013 at 8:40 pm
Can't help much from here but I can tell that I used Event Notification at a previous employer when I setup database mirroring on SQL Server 2008. The event...
January 22, 2013 at 8:59 am
ChrisM@Work (1/22/2013)
Welsh Corgi (1/22/2013)
SELECT
CASE WHEN LEFT(Customer.StartDate, 2) = '98' THEN substring(convert(varchar(20),Customer.StartDate), 3, 2)
...
January 22, 2013 at 7:09 am
Welsh Corgi (1/22/2013)
SELECT
CASE WHEN LEFT(Customer.StartDate, 2) = '98' THEN substring(convert(varchar(20),Customer.StartDate), 3, 2)
...
January 22, 2013 at 6:42 am
I also believe that it depends on ones environment. At a previous employer, the principal database servers reside on blade servers attached to a high performance SAN. The...
January 21, 2013 at 11:24 pm
Although posted in a forum dedicated to SQL Server 7 and SQL Server 2000, you stated you are using SQL Server 2008. The following is another alternative solution:
DECLARE @Issues...
January 21, 2013 at 11:16 pm
Lynn Pettis (1/21/2013)
Welsh Corgi (1/21/2013)
This works.
SELECT
CASE WHEN CAST(LEFT(Customer.STARTDATE, 2 AS VARCHAR(2)))
...
January 21, 2013 at 6:26 pm
Welsh Corgi (1/21/2013)
This works.
SELECT
CASE WHEN CAST(LEFT(Customer.STARTDATE, 2 AS VARCHAR(2)))
...
January 21, 2013 at 1:19 pm
Viewing 15 posts - 8,896 through 8,910 (of 26,490 total)