Viewing 15 posts - 7,921 through 7,935 (of 13,876 total)
ChrisM@Work (11/12/2015)
Ed Wagner (11/12/2015)
Sean Lange (11/12/2015)
Jack Corbett (11/12/2015)
Sean Lange (11/12/2015)
Brandie Tarvin (11/12/2015)
Sean Lange (11/12/2015)
djj (11/12/2015)
Grant Fritchey (11/12/2015)
November 12, 2015 at 10:23 am
nexus2vijay (11/12/2015)
I'm not a Techie infact. I'm from Teaching field and new to IT industry and getting to know the DB.
If you could help me out...
November 12, 2015 at 10:17 am
nexus2vijay (11/12/2015)
From the attached 4 Tables Schema Diagram
Will the below query Reduce me the ListPrice by 20% if i didn't receive the order for the last 2 years ? Jammed...
November 12, 2015 at 10:07 am
OK, version 2.
declare @x varchar(500) = '&StartRow=1&EndRow=1000&LoginID=40&ProjectAssessment=16&ShowColumns=Asset&ShowColumns=Category&ShowColumns=IOL&ShowColumns=Vulnerability%20Exposed&AssetDescription=&';
select @x
,left(replace(right(@x, len(@x) - charindex('&ShowColumns=', @x) - 12), '&ShowColumns=', ','),charindex('&',replace(right(@x, len(@x) - charindex('&ShowColumns=', @x) - 12), '&ShowColumns=', ','))-1)
November 12, 2015 at 9:13 am
robert.wiglesworth (11/12/2015)
November 12, 2015 at 9:03 am
You could try this. Might not work in all circumstances though:
declare @x varchar(500) = '&StartRow=1&EndRow=1000&LoginID=40&ProjectAssessment=16&ShowColumns=Asset&ShowColumns=Category&ShowColumns=IOL&ShowColumns=Vulnerability%20Exposed&AssetDescription=&';
select @x
,replace(replace(right(@x, len(@x) - charindex('&ShowColumns=', @x) - 12),...
November 12, 2015 at 8:39 am
nexus2vijay (11/12/2015)
Attached the Schema of a DB with 4 Tables.
1.Query to get the customers with the total sales, who placed an order last year but not this year.
•Column...
November 12, 2015 at 6:47 am
If the solution you are considering is as simple as you suggest, there is little point in staging anything. Instead
1) Dataflow task with source Server1.Source1
2) Data source to fully-cached Lookup...
November 11, 2015 at 12:08 pm
Sure.
Let's assume your source proc is called dbo.proc and it has a parameter called @MaxDate.
Point your OLEDB data source at your source database and in SQL commend text, enter:
exec dbo.Proc...
November 11, 2015 at 6:17 am
Assuming that they are both still changing and that these changes need to be reflected in the reporting server, I would keep them separate.
Consider using replication to keep the DBs...
November 11, 2015 at 5:20 am
A bit off topic, but why are you casting the dates as varchars?
November 10, 2015 at 12:25 pm
SQL.AP (11/10/2015)
November 10, 2015 at 4:12 am
system243trd (11/9/2015)
November 10, 2015 at 2:51 am
aikman2222 (11/10/2015)
I have two columns in my source data, Created and Change that I want to check against.
I have succed it with a Stored Procedure:
where
cast(o.created as date) >=...
November 10, 2015 at 2:38 am
aikman2222 (11/10/2015)
Am a newbie in SSIS and need help with following:
Have a load and the last step in the Control Flow I update LastImportDate in a Table
update ParamSettings set
value...
November 10, 2015 at 1:14 am
Viewing 15 posts - 7,921 through 7,935 (of 13,876 total)