Viewing 15 posts - 136 through 150 (of 215 total)
My Select works fine, but when i added hte update to it, it updates the DomainRoot with the same value for all records. I am missing something but not...
March 4, 2014 at 2:58 pm
Select CD.*
From ClientDomains as CD , DomainShortList as CD2
Where Substring(CD2.DomainName, Charindex(CD2.DomainName,CD.DomainName),100) IN (Select DomainName From DomainshortList )
This is not working for me... Can someone help me...
March 4, 2014 at 1:09 pm
Yes, that worked! thanks. Now I have another issue related to this.
I have my main form called: F_workspacePP
Then I have a Tab control called: TabMain
I then created...
December 11, 2013 at 12:18 pm
Same path. The db's remain in the same location.
July 9, 2013 at 7:53 am
thanks but this is good for an existing server instance and not a new one with db's that are unattached. There is no history in the master db of...
July 8, 2013 at 3:59 pm
It talks more about the masterdb. I cannot try the suggested cmd's because the instance does not start.
July 5, 2013 at 5:26 pm
I think you are right. SQL may not have rights to the C: root drive. How do I change the location of the tempdb in sql server if...
July 5, 2013 at 4:27 pm
Cannot connect to servername
Additional information:
A network-related or instance-specific error occured while establishing a connection to SQL server. The server was not found or was not accessible.....
July 5, 2013 at 1:00 pm
Ok, I think I found the issue, but don't know how to change this to fix it.
The problem seems to be with this code:
Select S1.*, S2.Cnt , rn = ROW_NUMBER()...
June 11, 2013 at 5:06 pm
Here's the full code. I don't think the rest of it would affect the results, but you tell me?
Select S1.*, S2.Cnt, Cast(Null as Integer) as rn
Into AS_Workspace.dbo.StdPmt_InvAmt_SUM7...
June 11, 2013 at 9:42 am
I figured out the query that works for me:
Select S1.*
Into AS_Workspace.dbo.StdPmt_InvAmt_SUM_Removed
From FSW_NZ_JDE_Apr05_Sep12_C.dbo.StdPmt as S1
Inner join ( Select VndNbr, InvNbr, Sum(InvAmt) as InvAmt_Sum
From FSW_NZ_JDE_Apr05_Sep12_C.dbo.StdPmt
Group By...
June 4, 2013 at 6:57 pm
Viewing 15 posts - 136 through 150 (of 215 total)