Viewing 15 posts - 1 through 15 (of 1,108 total)
eranna (8/21/2009)
August 21, 2009 at 12:55 pm
Can you access this instance remotely or is there a particular reason you need to work on the server?
Regards,
Andras
August 21, 2009 at 12:36 pm
naumanikram2008 (6/11/2009)
my select statement is having null value in a column as shown below,
1first
2NULL
32nd
4NULL
5NULL
6NULL
what i want if there is any null value found previous column...
June 11, 2009 at 11:18 pm
bill.summers (6/10/2009)
June 10, 2009 at 11:11 pm
jain_abhishek (6/10/2009)
June 10, 2009 at 11:06 pm
reachviji83 (6/10/2009)
guptaopus (3/10/2008)
I would like to use a stored procedure that calls other stored procedures and use a
temporary table to pass the results back and forth.(from Parent to child)
anybody help...
June 10, 2009 at 7:53 am
priya_jengathe (4/8/2009)
I come to know that we cannot pass Table variable as a parameter to storeprocedure in
SQL SERVER 2005 . Please consider below senario ...
have datatable and wanted to insert...
April 15, 2009 at 4:18 am
How are you storing the xml that you generate? Are you using the xml data type on SQL Server 2005?
An example would certainly help.
- Regards,
Andras
December 22, 2008 at 2:14 am
Michael Wilkins (12/15/2008)
What if this option is grayed out?
Could you provide more details about which option that is greyed out?
- Andras
December 18, 2008 at 9:01 am
Alan-of-Boston (12/18/2008)
This morning I downloaded build 4035.
What is the difference? (aside from the date and slight difference in phase...
December 18, 2008 at 8:39 am
To do this you can get the current def trace file name by
SELECT value FROM ::fn_trace_getinfo(0) where property = 2
then substitute the filename, and search for events 104 (indicating...
December 18, 2008 at 7:29 am
The primary key in this case will not help performance, but it will not make it worse either 🙂 But it will add the benefit of enforcing that the rows...
October 9, 2008 at 7:11 am
It could be an expensive operation, but it should work. Note that by default when you add a primary key constraint to a table, and a clustered index does not...
October 8, 2008 at 7:04 am
dva2007 (10/8/2008)
October 8, 2008 at 5:11 am
You can do this by using sum, group by and case:
SELECT [Name]
, SUM(CASE WHEN [Month] = 'Apr-08' THEN [Total]
...
October 8, 2008 at 4:29 am
Viewing 15 posts - 1 through 15 (of 1,108 total)