Viewing 15 posts - 1 through 15 (of 153 total)
Use dynamic query....as you like
EXEC (
May 5, 2017 at 7:19 am
Select Count(Names),MemberId,Names from Table_Sample group by MemberID Having Count(Names)>1
January 5, 2017 at 8:22 am
May be credentials issue..Plz chcek which account you have used ?
Add one more Script task or executeprocess task (Batch file) to test whether the server is able to access...
June 7, 2016 at 3:43 am
Yes,
Truncate will remove data from Table and reset/initialize the identity value.
May 30, 2016 at 12:01 am
Here you can go how to use DELETE OPEN QUERY...at the end .
May 18, 2016 at 3:28 am
There is no script..
If your database was containing relationships like Parent and child ,
Database Diagram option from SSMS will give you complete picture for selected Objects. If there is no...
May 13, 2016 at 1:05 am
Please post your modified Query...
I thought you have applied for one column only...
May 13, 2016 at 1:00 am
Do this expression at the backend Proc or SQL Query and show it as in String in front end..?
May 6, 2016 at 3:42 am
DECLARE @i INT
Select @i=33059
Select CASE WHEN LEN (@i)=5 THEN '0'+LEFT(CAST(@i as VARCHAR(2)),1)+':'+SUBSTRING(CAST(@i as VARCHAR(2)),2,2)+':'+RIGHT(CAST(@i as VARCHAR(2)),2)
WHEN LEN (@i)=6 THEN LEFT(CAST(@i as VARCHAR(2)),2)+':'+SUBSTRING(CAST(@i as VARCHAR(2)),2,2)+':'+RIGHT(CAST(@i as VARCHAR(2)),2) END
OR
DECLARE @i INT,@var...
May 6, 2016 at 3:09 am
You can use FileStream concepts here...
However when you want to open specific file , add with file name type like .wav or .txt or .jpeg etc...
I got similar requirement for...
May 3, 2016 at 7:22 am
You said that DeliveryNote is poulated from SDN's ID...
So, there are no records in SDN which are not in SI.
Use the following query for your test,
select SDN.id, SDN.number ,SI.DELIVERYNOTE
from...
April 14, 2016 at 4:12 am
Please give the information whet you required in detail..which will help to give Correct one...
I think below one is you required..
Use group by for Id Column of Derived table ...
September 30, 2015 at 2:14 am
The total records are of 10-25 Millions...
September 16, 2015 at 3:04 am
Viewing 15 posts - 1 through 15 (of 153 total)