Viewing 15 posts - 46 through 60 (of 382 total)
How about:
WITH cteUsersAndSoftware(UserName, Software)
AS
(
SELECT DISTINCT s.User_Domain0 + '\' + s.User_Name0 AS 'UserName',
(CASE
WHEN p.DisplayName0 LIKE 'Microsoft Visual Studio% %Ultimate% %2013%' OR ... THEN 'Microsoft Visual Studio Ultimate 2013'
WHEN p.DisplayName0 LIKE 'Microsoft...
February 12, 2014 at 8:23 am
February 12, 2014 at 8:07 am
jameslauf (2/11/2014)
February 11, 2014 at 12:53 pm
I think that the variables cannot contain nulls.
You could replace your configurations with some value that you aren't going to use (-1, -100000, or some such).
February 11, 2014 at 10:59 am
Are the default values that the configuration gives you ones that you could ever picture using? Would you ever use 0, or the date in 1899? If not,...
February 11, 2014 at 9:52 am
What does the command line look like in the SQL Server Agent task? Specifically, what is the syntax for the Set values part for the variable?
January 31, 2014 at 9:31 am
You are going to need to use a script task, if only to get the date last modified.
July 30, 2013 at 11:47 am
There was one key phrase in the request for the change that I would like to focus on: "small change." There are rarely any small changes. To...
January 21, 2013 at 6:13 am
I am going to assume that all "M"s from the Excel source needs to be changed to "F" in the target and all "F"s need to be changed to "M."
My...
August 21, 2011 at 2:44 pm
Do you want to remove the comma when moving the data from Oracle to SQL Server or in SQL Server?
May 8, 2011 at 3:03 am
winston Smith (4/20/2011)
I have found a few blogs but nothing very substantial.
Can you list some of the blogs you have found for a start?
April 20, 2011 at 6:54 am
See if this helps: http://www.mssqltips.com/tip.asp?tip=1417
April 20, 2011 at 5:35 am
I'm not sure that you are going to get much help here. This sounds like an Ubantu OS issue not a Reporting Services issue.
April 15, 2011 at 5:37 am
In order to pass in variables to the Execute Package as arguments for the bcp command, you are going to have an expression in which you build the entire command...
April 15, 2011 at 5:35 am
Did you try:
declare @action varchar(10);
set @action = ?
if @action = 'INSERT'
April 10, 2011 at 1:20 pm
Viewing 15 posts - 46 through 60 (of 382 total)