Viewing 15 posts - 376 through 390 (of 3,233 total)
I suppose I could have done this just as easily to your original, but sometimes a simple example shows the technique better. Just as long as you understand what...
August 5, 2010 at 10:02 am
Is the service account running your SSRS instance set up as a user in your database?
August 5, 2010 at 9:41 am
You need to reference the named instance in the connection like this: host\instance.
August 5, 2010 at 9:35 am
Please do not double post......
continue this thread here
August 5, 2010 at 9:34 am
DECLARE @ParmDefinition nvarchar(500);
SET @ParmDefinition = N'@Date datetime'
DECLARE @DBNameVar NVARCHAR(128)
DECLARE @Statement NVARCHAR(600)
DECLARE @ADATE DATETIME
SET @ADATE =(DATEADD(d,-60,getdate()))
SET @Statement=N'SELECT @DATE'
EXEC sp_executesql @Statement, @ParmDefinition, @Date = @ADate
August 5, 2010 at 9:32 am
Just make sure the SELECT portion of this statement gives you the correct results, then combine with the INSERT and let it roll.
INSERT INTO ClientAlias(ClientAlias,ClientID,defaultalias,enrolled)
SELECT Clients.Name & ' (' &...
August 5, 2010 at 9:25 am
Can you write the SQL statement that SELECTs the data that you want deleted?
August 5, 2010 at 9:22 am
sing4you (8/5/2010)
sushantkumar1984 (7/28/2010)
India --> chicagochicago --> British virgin islands
British virgin islands--> ??
There is no need to ever leave the British Virgin Islands.
Agreed.
August 5, 2010 at 8:54 am
These are some of the things I had to learn too moving from DTS to SSIS. The visual studios environment gives you much better troubleshooting and debugging features. ...
August 3, 2010 at 4:01 pm
You have to include the variable as a ReadOnlyVariable in the script properties page.
There is an easier way to do this. Set a breakpoint and use the Watch window....
August 3, 2010 at 3:43 pm
Tom.Thomson (7/28/2010)
John Rowan (7/28/2010)
bcsims 90437 (7/28/2010)
#25 'ALL' my problems can be solved by time and money!
Now your challenge will be to get both since most income equations involve trading one...
July 29, 2010 at 9:13 am
bcsims 90437 (7/28/2010)
#25 'ALL' my problems can be solved by time and money!
Now your challenge will be to get both since most income equations involve trading one for the other.
July 28, 2010 at 12:13 pm
crookj (7/26/2010)
John Rowan (7/26/2010)
blessingSneezed?
Joe
Nope, just count 'em.
July 26, 2010 at 10:29 am
Viewing 15 posts - 376 through 390 (of 3,233 total)