Viewing 15 posts - 5,956 through 5,970 (of 9,643 total)
What application are you using to connect? What are the steps you are taking to connect?
February 18, 2009 at 6:50 am
I have not used either one of these, although I vaguely remember investigating one a few years ago, but I think at least the first one may do what you...
February 18, 2009 at 6:06 am
roy.neelanjana (2/18/2009)
I have tried to change the "language" from report properties to French for the report label but while previewing the same it does not reflect the changes in...
February 18, 2009 at 5:42 am
I believe so, but you would need to use forms authentication and write some code yourself. Check this out to find out how it would work.
February 17, 2009 at 7:37 pm
Bob Hovious (2/17/2009)
I tried ... closest I could get was "naieve bayes algorithm" which, curiously, I had already heard about recently.
Great I had post in a forum to find out...
February 17, 2009 at 7:32 pm
Bob Hovious (2/17/2009)
That said, I totally agree that complexity for it's own sake can make a project nonprofitable, but that's a project management issue, not an SQL issue. ...
February 17, 2009 at 7:31 pm
I think this is what you need( from the sp_send_dbmail BOL entry):
[ @query_result_no_padding = ] query_result_no_padding ]
The type is bit. The default is 0. When you set to 1, the...
February 17, 2009 at 10:06 am
The only way I have found, and there may be a better way, is to create a dummy row in the Excel sheet with the columns properly sized. Then...
February 17, 2009 at 9:51 am
Because it is a RIGHT OUTER JOIN the WHERE clause is saying give me all the rows in vw_PBC_Report_Actuals that do NOT have a corresponding row in PBC_Budget_v_Actuals. This...
February 17, 2009 at 7:47 am
You can use windows scheduler to run batch files using sqlcmd. You can also take a look at this:
I believe that Denny Cherry is also working on an Agent...
February 17, 2009 at 7:44 am
Can you post the source table definitions, some sample data, expected output, and the business reason(s) for the code? See
the links in my signature for how to. That's...
February 17, 2009 at 7:37 am
I have not used it it yet, but RedGate offers some of this functionality integrated with SQLCompare using SQLChangeset. This integrates with SourceSafe.
February 17, 2009 at 7:28 am
Try this:
select
A.fldA,
A.fldB
from
tableA A
where
EXISTS ( select
...
February 17, 2009 at 7:25 am
The solution proposed by Gowtam will work, but this article, http://www.sqlservercentral.com/articles/TSQL/62867/ offers another solution that tends to scale better.
February 17, 2009 at 7:18 am
Please read this article as it covers all you need to know for your situation: http://www.sqlservercentral.com/articles/65804/
February 17, 2009 at 7:16 am
Viewing 15 posts - 5,956 through 5,970 (of 9,643 total)