Viewing 15 posts - 1 through 15 (of 20 total)
Great Article Lynn
I also wrote something similar long time back on my blog....
http://mohitnayyar.blogspot.com/2008/09/data-extrapolation-on-fly.html
Thanks
Mohit
Thanks
Mohit Nayyar
http://mohitnayyar.blogspot.com/
"If I am destined to fail, then I do have a purpose in my life, To fail my destiny"
September 22, 2009 at 8:48 am
Yes, this is very much clear for everyone who understands CTE.
Thanks
Mohit Nayyar
http://mohitnayyar.blogspot.com/
"If I am destined to fail, then I do have a purpose in my life, To fail my destiny"
November 14, 2008 at 11:08 am
I am creating the temp. table to DEMO the functionality. But in real world case you will use the actual table. So not temp. table required for extrapolation.
Please let me...
Thanks
Mohit Nayyar
http://mohitnayyar.blogspot.com/
"If I am destined to fail, then I do have a purpose in my life, To fail my destiny"
November 14, 2008 at 8:57 am
SELECT
ROW_NUMBER() OVER (PARTITION BY [name] ORDER BY dept, name) AS Seq
, *
FROM TableName
Thanks
Mohit Nayyar
http://mohitnayyar.blogspot.com/
"If I am destined to fail, then I do have a purpose in my life, To fail my destiny"
September 22, 2008 at 11:04 am
You can achieve the same using standard T-SQL with these steps, but I would like to inform you that I am making some really BIG assumptions, so please go through...
Thanks
Mohit Nayyar
http://mohitnayyar.blogspot.com/
"If I am destined to fail, then I do have a purpose in my life, To fail my destiny"
August 19, 2007 at 12:09 am
You might be saving some sensitive (connection password etc.) data inside the package and this data is being encrypted by your windows user profile. That means if...
Thanks
Mohit Nayyar
http://mohitnayyar.blogspot.com/
"If I am destined to fail, then I do have a purpose in my life, To fail my destiny"
August 17, 2007 at 12:21 pm
See, if we have cursor in SQL Server then they must be of some use.
So it depends on the business / technical requirement and our capability of using...
Thanks
Mohit Nayyar
http://mohitnayyar.blogspot.com/
"If I am destined to fail, then I do have a purpose in my life, To fail my destiny"
August 16, 2007 at 11:34 pm
http://support.microsoft.com/default.aspx/kb/918760
I guess this link will be useful for you, I had the same SSIS issue sometime back and that was the easy fix.
Thanks
Mohit Nayyar
http://mohitnayyar.blogspot.com/
"If I am destined to fail, then I do have a purpose in my life, To fail my destiny"
August 16, 2007 at 10:49 pm
Hi
Check your package property "ProtectionLevel" and see What is it? Package password is stored in "PackagePassword" property. I am sure playing with these 2 properties will definitely solve your problem.
I...
Thanks
Mohit Nayyar
http://mohitnayyar.blogspot.com/
"If I am destined to fail, then I do have a purpose in my life, To fail my destiny"
August 16, 2007 at 10:41 pm
Hi
The use of standard configurations is always useful and this can be very beneficial while deploying the package to another location (QA, TEST, and Production).
Environment variable
Always use the environment variable...
Thanks
Mohit Nayyar
http://mohitnayyar.blogspot.com/
"If I am destined to fail, then I do have a purpose in my life, To fail my destiny"
August 16, 2007 at 10:31 pm
Thanks guys
But We cannot go ahead with application roles as more than 10 different applications uses this db and they are legacy apps.
The DTS option is great, but what if...
Thanks
Mohit Nayyar
http://mohitnayyar.blogspot.com/
"If I am destined to fail, then I do have a purpose in my life, To fail my destiny"
October 11, 2004 at 11:52 pm
Thanks David
They all are the administrator or in someway related to top level management. They use excel because of easyness but it creates lots of problem for production environment.
We don't...
Thanks
Mohit Nayyar
http://mohitnayyar.blogspot.com/
"If I am destined to fail, then I do have a purpose in my life, To fail my destiny"
October 11, 2004 at 6:36 pm
Hi Steve
Ya, the solution is great, even I thought the same thing. But we should not play with system tables. I am still searching and let you know.
Otherwise we will go ahead...
Thanks
Mohit Nayyar
http://mohitnayyar.blogspot.com/
"If I am destined to fail, then I do have a purpose in my life, To fail my destiny"
October 11, 2004 at 12:48 am
We can try this with time
select dateadd(dd, -day(getdate()), getdate()) as Last_Day_Previous_Month,
dateadd(dd, -day(getdate())+1, getdate()) as First_Day_Current_Month,
dateadd(mm, 1, dateadd(dd, -day(getdate())+1, getdate())) as First_Day_Next_Month
Thanks
Mohit Nayyar
http://mohitnayyar.blogspot.com/
"If I am destined to fail, then I do have a purpose in my life, To fail my destiny"
February 11, 2004 at 10:55 pm
Thats OK.
But i would like to merge the content of publisher and subscriber at both ends. I haven't got any help on this topic.
Thanks
Mohit Nayyar
http://mohitnayyar.blogspot.com/
"If I am destined to fail, then I do have a purpose in my life, To fail my destiny"
February 11, 2004 at 10:34 pm
Viewing 15 posts - 1 through 15 (of 20 total)