Viewing 15 posts - 5,911 through 5,925 (of 9,643 total)
I've never heard of sp_SQLSMTPMail. Is it an add on you installed on SQL Server? What version of SQL Server are you using? If you are using...
February 20, 2009 at 7:14 am
How about:
IIf(Fields!Phone1.Value="", Fields!Phone2.Value.Substring(2), Fields!Phone1.Value.Substring(2))
The parameter passed to substring is a 0 based postion in the array to start at. Thus Substring(2) returns everything starting with the 3rd character....
February 20, 2009 at 7:10 am
Sounds like you do not have the Excel OLE DB Driver available on the active node.
February 20, 2009 at 7:01 am
Bob Hovious (2/19/2009)
If so, you are probably going to have to list all the columns. ...
February 20, 2009 at 6:55 am
Here are a couple of scripts in the SSC script library that either do what you want or will point you in the right direction:
February 20, 2009 at 6:48 am
Scheduled reports work by creating a SQL Server Agent job on the Report Server. You can schedule a report so the job gets created, but never runs because the...
February 20, 2009 at 6:20 am
I don't think you do this. I could be wrong. I think you could hack it together by writing the value out to a table or file and...
February 20, 2009 at 6:15 am
You may want to check out this blog post, http://sqlblog.com/blogs/jonathan_kehayias/archive/2009/02/19/sql-tip-keep-your-presentation-logic-in-your-presentation-layer.aspx about formatting using SQL Server.
February 20, 2009 at 6:08 am
Bruce W Cassidy (2/19/2009)
[font="Verdana"]Wait, isn't it Jack? Then he can ring Microsoft and say "I don't know Jack, and I can't find Jack."[/font]
Wait, I'm right here. I'm not...
February 19, 2009 at 3:52 pm
it is web-based & each user doesn't have separate connections. they use a shared connection string but each user would be given a separate username (application specific & not sql...
February 19, 2009 at 2:23 pm
Another reason for using Identity() in SQL Server is that it automatically handles set based inserts like:
Insert Into customer
Select
...
February 19, 2009 at 1:42 pm
You should look up SQL Trace in BOL. There are also a set of videos about SQL Server Profiler at JumpStartTV (free registration required).
If you can be more specific...
February 19, 2009 at 12:49 pm
I would typically include the updatedby and updateddate in the update statement, whether it is by ad-hoc sql from the application or in a stored procedure (my preferred and recommended...
February 19, 2009 at 12:41 pm
Roy Ernest (2/19/2009)
"I used to work at the White house in Washington DC, but I decide to change my career after a...
February 19, 2009 at 12:23 pm
GSquared (2/19/2009)
February 19, 2009 at 11:22 am
Viewing 15 posts - 5,911 through 5,925 (of 9,643 total)