Viewing 14 posts - 16 through 29 (of 29 total)
Well you've come to the right place 😀
Glad to help
December 29, 2009 at 7:21 pm
Just place a comma "," after nName
Name as nName,
December 29, 2009 at 7:15 pm
I am trying to run the following query:
select Name, PracticeAddressFirstLine from GlobalOrganization where PracticeAddressState = 'TX' group by practiceaddressfirstline order by Name
I get the following error:
Msg 8120, Level 16, State...
December 29, 2009 at 7:01 pm
I am trying to run the following query:
select Name, PracticeAddressFirstLine from GlobalOrganization where PracticeAddressState = 'TX' group by practiceaddressfirstline order by Name
I get the following error:
Msg 8120, Level 16, State...
December 29, 2009 at 6:56 pm
Steve Jones - Editor (12/29/2009)
Try this: http://www.sqlservercentral.com/scripts/T-SQL/67368/
[/size]
Thanx for that Steve... This is a great piece of code.
December 29, 2009 at 5:00 pm
This is what we use, and works just fine:
http://www.codeproject.com/KB/vb/SQLVBCoder.aspx
December 29, 2009 at 4:45 pm
select *
from information_schema.routines
Select*
From Information_schema.Tables
December 29, 2009 at 4:35 pm
We use CodeGen which automatically generates update/insert/delete etc SP's for each table
December 29, 2009 at 4:29 pm
We experienced simmilar issue:
Packages designed in 32bit, then migrated to 64bit does not work.
Solution:
1. Open dtsx package on VS on 64Bit
2. open up all "Script Tasks" into "Design Scripts"
3. Save...
December 28, 2009 at 8:41 pm
Hhmmm, very unique situation!!!
But like all SQL queries, they usually are.
"So I have been looking at using a ServerName Column (default value @@ServerName) and a Identity Column (Auto Number) as...
December 28, 2009 at 6:04 pm
Hi Brad,
I think we might need a little bit more info on this, but if I understand you correctly:
1. You send out a copy of the MASTER Db to remote...
December 28, 2009 at 1:42 pm
Hi my fellow SQL-Freaks.
On this topic: Reading Email on 64bit SQL 2005
Currently we also run 64Bit SQL 2005, and same as you, as a DBA and Analyst, I also needed...
December 20, 2009 at 6:07 pm
Viewing 14 posts - 16 through 29 (of 29 total)