Viewing 15 posts - 1 through 15 (of 16 total)
Lovely! Tasks get easier everyday.
I have never use PowerShell though. Can you please tell me the resources that I need to get started on PowerShell. Thanks
March 22, 2012 at 3:23 am
Ninja's_RGR'us (10/26/2011)
@StaintGr8, please notice how you can run the inner queries simply by highlighting then and hitting F5 (excluding the correlation... can't do that with the...
October 26, 2011 at 7:48 am
Hello!
I've got the answer from another blog. Here it goes!
;WITH CTEPledgeAmount AS(
SELECT LastName , SUM(PledgeAmount)PledgeTotalPerIndividual
FROM dbo.Members AS m
LEFT JOIN dbo.Pledges AS p ON m.MemberIdentityID = p.MemberIdentityID
GROUP BY LastName),...
October 26, 2011 at 7:36 am
Ninja's_RGR'us (10/26/2011)
Works reasonably fast here so I didn't bother trying to find faster way to access the data,...
October 26, 2011 at 6:56 am
Your advice, I strongly believe is the way forward. But the business rules is to avoid NULL as much as possible hence multiple tables. At the same time they want...
October 26, 2011 at 6:50 am
IF OBJECT_ID('dbo.Members') IS NOT NULL
BEGIN
DROP TABLE dbo.Members;
END;
CREATE TABLE dbo.Members(
--MemberID INT NOT NULL
MemberIdentityID INT NOT NULL IDENTITY(1,1)
, LastName ...
October 26, 2011 at 6:44 am
Thomas LeBlanc (9/29/2011)
I get SELECT * FROM [Person].[Contact] when I run it.Thanks,
Thomas
Make sure your table is within the double quote, e.g: "HumanResources.Employee"
September 29, 2011 at 7:56 am
Beautiful!
It works. Olga, you rock!
September 29, 2011 at 6:49 am
I so much enjoyed the lecture. I mean this is simply beautiful. I cannot wait to have it up and running in my environment.
I ran the query [sp_SourceTargetMapping] and then...
September 29, 2011 at 2:02 am
Done and dusted!
Thanks a lot.
September 22, 2011 at 7:32 am
No! I will do that right now. That mean that I can highlight any schema and table name in a database and hit the keys.
Thanks for the help.
September 22, 2011 at 7:17 am
Matt Wright (9/22/2011)
September 22, 2011 at 6:54 am
cgrigolini (9/22/2011)
The sp doesn't work for tables which are not in dbo scheme
So, how to you go about that please?
September 22, 2011 at 5:01 am
Viewing 15 posts - 1 through 15 (of 16 total)