Viewing 15 posts - 196 through 210 (of 1,346 total)
If your tables already exist, and your trying to figure out who did it. then Probably not.
If your designing a solution, then there are a few things you can do.
For...
February 17, 2009 at 10:55 am
rayash16 (2/16/2009)
thats what i am not able to get.how to check the file wheather its loaded or not.i am not getting the condition.
would be mind giving details abt it
First set...
February 16, 2009 at 3:56 pm
If you log the files that have been loaded then you have enough information to proceed.
Create a task that checks the table for the file to see if it has...
February 16, 2009 at 9:20 am
Books online really describes the securty pretty clearly.
http://msdn.microsoft.com/en-us/library/bb283249(SQL.90).aspx
Can't really give you a clear answer because it really depends on what your trying to do in the long run.
This may be...
February 13, 2009 at 2:42 pm
Not sure what is in your table valued function but you can do it 2 ways
Select Month, SUM(Month) as MonthlyTotal,(100 * SUM(convert(decimal(4,1), Month))/260504) As Frequency
From GetTotalOf1(@Month)
Group by Month
OR
Select Month, SUM(Month)...
February 10, 2009 at 12:22 pm
There is no direct way to do this.
If you must physically re-align the identity values rebuild the table as suggested above.
if you just need the values to be incremental on...
February 3, 2009 at 2:34 pm
Its not the easiest way, to go about it because I don't know the whole problem your trying to solve, but for this specific example you can just return all...
January 30, 2009 at 3:46 pm
My question is why do you need it in a parameter.
Why not use a recordset?
And if you need it in a parameter there are ways.
January 30, 2009 at 3:13 pm
From BOL
http://msdn.microsoft.com/en-us/library/ms141124(SQL.90).aspx
After you finish updating the packages, you rebuild the project, copy the deployment folder to the target computer, and then rerun the Package Installation Wizard.
If you update only...
January 30, 2009 at 2:51 pm
The default .NET Timout value is 30 seconds, if you explicily assign the value you can extend it.
Check this out, and let us know if any of it worked
January 30, 2009 at 2:49 pm
It is not a sp_executesql problem.
Your procedure is only passing back an output parameter of @PersonID,
you can only put 1 value in a parameter.
you need to restructure this call to...
January 30, 2009 at 2:39 pm
Then you would probably be safe using the UNION ALL Statement, and I think this would eliminate the sort operator.
January 30, 2009 at 2:26 pm
Do you have precedence constraints on your dimension tables to load and process prior to loading the data into your fact table?
There has to be something where the data is...
January 30, 2009 at 1:32 pm
you have to follow the tutorial in the article above, which shows you how to create a tally table.
Sql server does not store dates in the system.
So there is no...
January 30, 2009 at 1:25 pm
Viewing 15 posts - 196 through 210 (of 1,346 total)