Viewing 15 posts - 121 through 135 (of 180 total)
When you run it as a package it works because it runs under your credentials and I'm guessing your login has access to execute/write.
When you run it from a...
September 11, 2013 at 1:06 am
I'll give that a go but what is confusing is in Connection manager I can enter in a Username/Password which is what i want, but the site doesnt prompt me...
March 20, 2013 at 3:42 pm
Koen Verbeeck (3/15/2013)
What is your exact scenario?Normally you would use a webservice to exchange data with a website.
Hey, the exact scenario to do this manually is like this
1. Go to...
March 18, 2013 at 10:57 pm
Thanks guys, i've tried both and both get the same results as i expected. I thought i had use cross apply just wasn't too sure how to use it...
January 2, 2013 at 2:30 pm
Bob Griffin (11/19/2012)
November 19, 2012 at 9:04 pm
surma.sql (11/19/2012)
I had one task.
I need to restore on DATABASE on [Server A] from [Server B].
[Server A] is on VINEMAPPLE Domain and
[Server B] is on mpeboe domain.
so when I...
November 19, 2012 at 7:13 pm
satishdbaid (11/19/2012)
Thanks for the reply..
Im not sure on how to use sysjobhistory data..
and
My request is job named "reorganize" which is in scheduled for daily at 8 Pm.
User...
November 19, 2012 at 5:03 pm
SpringTownDBA (11/19/2012)
Full text querying only does prefix matching, not postfix'erin*' matches 'erinblah'
'*erin' doesn't match 'blaherin'
There is no way to match the last half of a word.
I just learnt something new...
November 19, 2012 at 2:38 pm
Eugene Elutin (11/19/2012)
SELECT *
FROM table_name
WHERE CONTAINS(*, '"*eran*"');
Also, read my previous post regarding hyphens and ampersands... It will make it...
November 19, 2012 at 3:50 am
eranzo111 (11/19/2012)
With those 2 queries, I get partial results.
Let say the the text I query by is "eran":
SELECT *
FROM table_name
WHERE FREETEXT(*, 'eran');
SELECT *
FROM table_name
WHERE CONTAINS(field_name, 'eran');
And the DB has...
November 19, 2012 at 1:54 am
eranzo111 (11/18/2012)
I am quering a big table (about 150,000 rows) with a big varchar field (size 2000) which can't be indexed (and there's no point even if it could be)....
November 18, 2012 at 3:51 pm
Tava (11/12/2012)
briancampbellmcad (11/12/2012)
I ran the code above and now have a SQL...
November 12, 2012 at 6:16 pm
briancampbellmcad (11/12/2012)
I ran the code above and now have a SQL error...
November 12, 2012 at 6:09 pm
No problem, hope it all worked
November 7, 2012 at 11:56 pm
avdhut.k (11/7/2012)
I have Excel File with following coloumn and sample data.
example,
No TranRefNo
1 1111
2 ...
November 7, 2012 at 11:00 pm
Viewing 15 posts - 121 through 135 (of 180 total)