Viewing 15 posts - 25,891 through 25,905 (of 26,487 total)
Not really sure what you are asking, but if you are trying to make a comma seperated list of names try this:
declare @NameList varchar(8000)
select @NameList = isnull(@NameList,'') + Name +...
May 30, 2007 at 10:11 am
Curious, Best, but when are you going to start doing your OWN work insterad of relying on the good nature of the people who use this site?
If you would take...
May 30, 2007 at 8:30 am
I think I have a pretty good understanding about building and tuning queries, and the use and creating of indexes. What I am not sure about is statistics. In working...
May 30, 2007 at 7:00 am
SQL Noob, not that I didn't want your scripts (I'm not one to reinvent the wheel everytime I need one), but I thought it best to write my own as...
May 29, 2007 at 12:41 pm
Along these lines, how much effort should I put in to understand statistics? Would getting Inside Microsoft SQL Server 2005: Query Tuning and Optimization be a worthwhile investment? Just curious...
May 29, 2007 at 10:40 am
substring(tbl1.field1, 1, patindex('% %',tbl1.field1) - 1) = substring(tbl2.field1, 1, patindex('% %',tbl2.field1) -1)
May 25, 2007 at 12:32 pm
Just checking to see if you have an update?
May 25, 2007 at 11:59 am
I'm tired of TLA's, there are just too many of them. Someone care to elaborate on BES?
May 25, 2007 at 11:14 am
Unfortunately, some of these queries are written using the PeopleSoft Query Tool (visually build your query and let Oracle decide how best to run it!).
We have come to the conclusion...
May 25, 2007 at 9:27 am
Actually, we are running Windows Server 2003 Enterprise Edition. Sys Admin had to add the PAE when he added the additional 4 GB RAM to the server on Friday so...
May 24, 2007 at 6:18 pm
AWE is NOT enabled, only using the /3GB switch. max degree of parallelism is currently set to 2 (the number of physical processors in the server).
May 24, 2007 at 4:25 pm
1st, dev boxes were upgraded to SQL 2005 first. We have no PeopleSoft Database Servers currently running SQL Server 2000.
2nd, same boxes as before. Uninstalled SQL Server 2000, installed SQL...
May 24, 2007 at 2:12 pm
We update statistics nightly. Didn't help. Going to look more closely at the indexes. Also asked sys admin to add lock pages in memory priv to the service account login. ...
May 24, 2007 at 1:53 pm
Since you are using the field in a where clause, it makes sense to index the field.
May 24, 2007 at 10:57 am
Viewing 15 posts - 25,891 through 25,905 (of 26,487 total)