Viewing 12 posts - 31 through 42 (of 42 total)
Please send more detail.
I can say please check or compare with temp space and memory there will be a diffrence .
August 16, 2012 at 8:21 pm
Hi if there case one. when coma is exactly after two character .
declare @t table(c varchar(100))
insert @t values ('AA,BB,CC'),('DD,EE,FF'),('GG,HH,II')
select
col1 = SUBSTRING(c,1,2),
col2 = SUBSTRING(c,4,2),
col3 = SUBSTRING(c,7,2)
from
@t
-------2
if there is no rule...
August 16, 2012 at 8:09 pm
I do agree on the point in case of if linked server is also SQL server .
But in that case u should have same set of user name and password...
August 14, 2012 at 8:03 am
One security concern .
When we connect any database using linked server .
All operation no data base will be operated by one user account( the account used for creating linked...
August 14, 2012 at 6:15 am
Hi.
you can see error history of your subscription in "dbo.sysjobhistory ". As each subscription is a sql job.
August 13, 2012 at 7:46 pm
INSERT INTO DEATHTABLE (ISNID)
SELECT d.ISNID FROM VOTERID v
LEFT JOIN DEATHTABLE d
ON d.ISNID=v.ISNID
WHERE v.ALIVE='NO'
and s.ISNID is null
August 9, 2012 at 12:33 am
Please check that u r having enough memory(Physical) at server.
see below links
http://www.modhul.com/2007/11/08/using-address-windowing-extensions-awe-with-sql-server/
August 8, 2012 at 7:13 am
Send mail does not have that function . so hack is only option..
August 8, 2012 at 7:08 am
Then you can try
1 run package on all domain.
2 not sure will work but can try using comman name and password
September 2, 2011 at 12:59 am
Hi ,
Follow following steps it will help u .
Use "Foreach Loop Container" to get your username/password and paths to variables
...
September 2, 2011 at 12:25 am
Hi Write like ---
INSERT INTO DEATHTABLE (ISNID)
SELECT ISNID FROM
VOTERID WHERE ALIVE='NO'
AND ISNID NOT IN (SELECT ISNID FROM DEATHTABLE)
August 29, 2010 at 4:03 am
Viewing 12 posts - 31 through 42 (of 42 total)