Viewing 15 posts - 16 through 30 (of 63 total)
Check this article from Microsoft:
October 10, 2007 at 10:24 am
Just add GROUP BY to Sandy's query:
SELECT t.id, t.date,
MAX((CASE id_plan WHEN 'A' THEN 'Y' ELSE 'N' END)) AS A ,
MAX((CASE id_plan WHEN 'B' THEN 'Y' ELSE 'N' END)) AS...
October 9, 2007 at 5:50 pm
Similar to Mike's:
select count(*) from (
select WorkOrder from #TestTable group by WorkOrder having count(distinct JobNumber)=1
) as [single_ep]
union all...
September 17, 2007 at 5:39 pm
For performance, it again depends on business requirements. For example, if there is a request to find all of your customers who live at the same household then design 1 will...
August 28, 2007 at 9:53 am
I'd check the business rules/requirements to find out if Address is an entity by itself. For example, if you want to do mass mail to your customers and you have several...
August 24, 2007 at 6:17 pm
So, to sum up troubleshooting you've done so far:
- Login with your domain account using Windows Authentication fails.
- Login with another domain account using Windows Authentication works.
- The default database...
August 7, 2007 at 3:30 pm
Can you post the entire error message? Also, is it a SQL login or Windows login?
August 7, 2007 at 2:42 pm
One correction to bledu's suggestion:
select txns.*, last_name as last_Name_from,
last_name as last_Name_to,
first_name as
August 7, 2007 at 1:11 pm
I think you can just change default database to master for your login and be able to log in.
August 7, 2007 at 1:02 pm
Works fine for me. I'd suggest to first install SQL 2000 tools and apply SP4 and then go ahead with SQL 2005.
August 2, 2007 at 12:29 pm
I guess you are trying to do this:
update metadata.dbo.tabledetail set endtime = getdate()
where
metadata.dbo.tabledetail.PutYourFieldNameHere = 'pdsadmin.person'
June 6, 2007 at 6:22 pm
That's ok. Things happen even to the best of us!
January 18, 2006 at 1:20 pm
Gina,
If you're using SAN then make sure that your HBA drivers are up to date.
September 16, 2005 at 4:48 pm
First of all check if you can connect to the virtual server using SQL tools. If you have SQL client tools installed on the IIS box launch Query Analyzer and...
October 1, 2004 at 10:05 am
In addition to hoo-t...
If .mdf and .ldf files named consistently you can try to write a script to execute xp_cmdshell with 'dir /B yourpath\*.*' and insert results into a temporary table...
July 7, 2004 at 12:06 pm
Viewing 15 posts - 16 through 30 (of 63 total)