Viewing 15 posts - 361 through 375 (of 443 total)
drew.allen (8/2/2009)
Jeff Moden (8/2/2009)
Does SSRS have something in it to take an SQL DateTime and format it for display without disturbing the sortability of the underlying SQL DateTime?
If all...
August 3, 2009 at 5:29 am
Jeff Moden (8/2/2009)
Does SSRS have something in it to take an SQL DateTime and format it for display without disturbing the sortability of the underlying SQL DateTime?
Yes, it does....
August 3, 2009 at 5:24 am
jcrawf02 (7/28/2009)
GilaMonster (7/27/2009)
Gaby A. (7/27/2009)
arthykannan (7/6/2009)
July 29, 2009 at 5:34 am
There's also an issue when column names contain spaces, the stored procedure parameter names will also have the space in them and causes a syntax error.
Eg. Where a table...
July 28, 2009 at 4:41 am
GilaMonster (7/27/2009)
Gaby A. (7/27/2009)
arthykannan (7/6/2009)
July 27, 2009 at 7:59 am
Sorry, did the same as Jeff, didn't read Andrews answer and posted the same solution. :hehe:
July 6, 2009 at 8:35 am
Ian Scarlett (7/3/2009)
I'm shocked and appalled some people have a total disregard for Referential Integrity.
Can't say I'm shocked... Appalled, yes.;-)
Absolutely !!! Downright stupid 😉
July 3, 2009 at 7:22 am
An alternative is to set the foreign key in the child table to NULL before deleting the parent.
In Gails example this would mean adding the following just before deleting the...
July 3, 2009 at 3:01 am
This can (and should) be done without having to resort to a WHILE loop.
June 29, 2009 at 2:36 am
David B (6/26/2009)
Maybe unrestricted access to the minibar 😉
Someone else on my wavelength.:-)
June 26, 2009 at 2:17 am
I would advise strongly against using a UDF with a WHILE loop in it.
Please see Jeff's article[/url] on using a Tally table to avoid loops.
June 24, 2009 at 4:33 am
Read Jeff Moden's article on Tally tables here: http://www.sqlservercentral.com/articles/T-SQL/62867/
Create one, then try this:
declare @t table(date datetime,e int)
insert @t(date,e)
select '20080101',2 union
select '20080105', 3 union
select '20080210', 4 union
select '20080801', 4 union
select...
June 23, 2009 at 7:39 am
You should be able to use the web service since it's language independent.
Try : http://www.letmegooglethatforyou.com?q=ssrs+web+service+java
June 23, 2009 at 7:19 am
Have a look at this article http://www.sqlteam.com/article/exporting-data-programatically-with-bcp-and-xp_cmdshell
March 26, 2009 at 6:38 am
Viewing 15 posts - 361 through 375 (of 443 total)