Viewing 15 posts - 1,606 through 1,620 (of 1,838 total)
nairsanthu1977 (12/21/2008)
Can anyone tell me what are the advantages and disadvantages of SQL EXPRESS...
December 29, 2008 at 9:21 am
interfac (12/27/2008)
...but I need the WHERE
If you need that WHERE clause condition, you'll have to do it like Grant says to handle the case where there is no matching child...
December 29, 2008 at 8:54 am
Christian Buettner (12/28/2008)
Jeff Moden (12/28/2008)
...Lordy, I hope they never make SQL Server require semi-colons for everything like {gasp} Oracle...
Hm I kind of like that approach with semicolon after each statement,...
December 29, 2008 at 8:34 am
Personally, I'd say it depends on how your application user interface is designed and how much logic you have in your business layers. If the user enters all of...
December 23, 2008 at 8:17 am
GilaMonster (12/19/2008)[hr...Neither is desired for performance reasons. If there's blocking problems the best thing to do is fix the cause, not hide they symptoms.
Actually, because of the architecture of SQL...
December 19, 2008 at 8:54 am
MattieNH (12/17/2008)
December 19, 2008 at 8:12 am
Mani (12/17/2008)
...are there any issues and special considerations as we are moving databases from higher edition(Enterprise evaluation) to Developer edition?
There shouldn't be, Developer Edition has the same featureset as Enterprise...
December 17, 2008 at 3:17 pm
ccakinberk (12/16/2008)
December 16, 2008 at 4:11 pm
Could you clarify what you're looking to accomplish with the tool? I thought RAD was more a software design methodology than a set of tools. If you're looking...
December 16, 2008 at 3:51 pm
bseeley (12/16/2008)
Below is a simplified version of a select statement...SELECT
RRSPRB1.REFERENCE,RRSINV20.PARTNUM,RRSINV2.ITEMCOST,
RRSINV19.LOCATION,RRSINV1.INVCAT FROM
RRSINV2,RRSINV1,RRSINV20,RRSINV19
LEFT OUTER JOIN RRSPRB1 ON (RRSINV19.LOCATION=RRSPRB1.LOCATION)
AND (RRSINV20.PARTNUM=RRSPRB1.REFERENCE)
Would it be possible to see the whole SELECT statement? ...
December 16, 2008 at 7:35 am
Below is a query that can help you understand this table:
SELECT s.name AS schema_name, o.name AS table_name, i.name AS index_name,
ps.partition_number, ps.avg_fragmentation_in_percent, ps.avg_page_space_used_in_percent, ps.fragment_count, ps.page_count
FROM...
December 15, 2008 at 2:35 pm
AJ Mendo (12/15/2008)
,(Select RecordCount from FunctionNumberofNODand9(@SelectedOffice,@SelectedDate,@Outreach)) as 'NoNOD'
--Code 1
,(Select count (DISTINCT NatureId) from...
December 15, 2008 at 12:59 pm
What I'm saying is that it could be a concern if there are a lot of virtual memory swaps occurring. Making a larger virtual memory swap file will not...
December 15, 2008 at 12:44 pm
Something the VB routine is doing is causing the command SET IDENTITY_INSERT ... ON to happen for your data copy process. Have you tried to do a trace with...
December 15, 2008 at 9:43 am
SQL Server 2005 keeps alot of good information in the dynamic management views about this kind of thing. Below are the 2 main queries I use to find slow...
December 15, 2008 at 8:46 am
Viewing 15 posts - 1,606 through 1,620 (of 1,838 total)