Viewing 15 posts - 1 through 15 (of 629 total)
I just split these up into two SSIS's since I cant spend anymore time on it but I would still like to know if anyone has an answer. Is...
February 2, 2015 at 1:22 pm
If anyone has any thoughts at all on this I would greatly appreciate it.
February 2, 2015 at 7:38 am
Can you explain the math at work in your examples. For example
-->record 2 ,
Collection = 800,
Other_Due = 300
Int_Due = 200
Princ_due = 100
So my Desired output should be,
Int_Adj = 0
Princ_Adj...
September 20, 2013 at 8:42 am
My recommendation would be to do this in the source. If you only need the first ten characters then put a substring into a select statement and use that...
September 19, 2013 at 1:33 pm
Not really an opinion but I would highly recommend the product Neverfail for DR. It is in my mind a great product at a fraction of the cost of...
September 19, 2013 at 9:32 am
when you go through the removal process it should ask what features you wish to remove and I believe you can leave that.
September 19, 2013 at 9:28 am
Are you running this through somehting other than Microsoft SQL server? "{of" is not somehting SQL would understand to my knowledge. Also you have spaces in your table...
September 19, 2013 at 9:25 am
Just a thought but if you have to do more work to avoid creating an SSIS as a "on off" then it is still worth creating the SSIS even...
September 19, 2013 at 9:20 am
two links for you to look at
http://codebetter.com/raymondlewallen/2005/10/26/quick-t-sql-to-parse-a-delimited-string/
and
http://technet.microsoft.com/en-us/library/ms177410(v=sql.105).aspx
September 18, 2013 at 1:41 pm
try this
RANK ( ) OVER (PARTITION BY Datepart(week,schstrdt) ORDER BY Datepart(week,schstrdt))
Sorry I can't test this were I am currently but I beleive this would work.
September 18, 2013 at 1:25 pm
Sorry not following can you give an example of that. I personally would remove the cursor function from your tool box of options and pretend you never learned about...
September 18, 2013 at 12:49 pm
still missing the ON part of a few joins
September 18, 2013 at 12:38 pm
Get in the habit of formatting your code as it can help spot the problems. you are missing 2 on cluases.
SELECT
a.GRGR_CK,
a.GRGR_ID,
a.GRGR_NAME,
s.SBSB_ID,
s.SBSB_LAST_NAME,
s.SBSB_FIRST_NAME,
e.CLCL_ID,
e.CLCL_CUR_STS,...
September 18, 2013 at 12:04 pm
my recommendation would be to get a select working to correctly display the information as you will ant in to be displayed in your new table. Then just add...
September 18, 2013 at 11:59 am
Viewing 15 posts - 1 through 15 (of 629 total)