Viewing 15 posts - 166 through 180 (of 322 total)
Nothing wrong with your query
the problem is with
sys.dm_db_index_physical_stats (NULL, NULL, NULL, NULL, NULL)
Which is always going to take a long time to run
May 14, 2009 at 8:23 am
I can highly rate these 2:
both refer to 2005 but a lot of the principles are the same
I wouldn't recommend using the import/export data tasks to generate SSIS for you...
May 14, 2009 at 7:07 am
I'm not sure about the % complete.. i don't think it can be done as it would mean the DTSExec process knowing how much was to be done before the...
May 14, 2009 at 3:44 am
moggie_davee (5/13/2009)
thanks for reply. excel version is 2003. and data rows will be somewhere around 500 to 30000. can u let me know solution via ssis pls
I can show you...
May 14, 2009 at 2:04 am
I think the problem might be in your query
I just ran it and got way too many records returned
May 13, 2009 at 9:21 am
Usually reports are viewed through an intranet connection
May 13, 2009 at 9:15 am
use the row_number function instead
SELECT
row_number() over (order by ExecutionLog.UserName) AS RowNumber,
ExecutionLog.UserName,count(ExecutionLog.UserName) as HowManyReportsRan
FROM
Catalog INNER JOIN ExecutionLog ON Catalog.ItemID = ExecutionLog.ReportID
WHERE
ExecutionLog.UserName NOT IN ('NT AUTHORITY\SYSTEM','NT AUTHORITY\NETWORK SERVICE')
AND(NOT (Catalog.Path LIKE N'/Users...
May 13, 2009 at 9:12 am
a BCP task might be a better option if the file structure is straight forward.
Alternatively use a script or derived column task to split 1 column into several
May 13, 2009 at 8:25 am
Problems are:
Can the centralised server see all the servers which the packages need access to?
Is there going to be an issue with huge amounts of data travelling over the network....
May 13, 2009 at 8:23 am
you need even more quotes!
set @sto = '''''Pepe'''''
This will double quote the Pepe within the variable so when you add it to the other string it has the right number...
May 13, 2009 at 8:19 am
Joe (5/13/2009)
samuelThe model is: Motorola MOTO Q™ 9c ; verizon wireless
Its a windows smart phone!
You can use any WAV file for your alerts...
http://forum.xda-developers.com/showthread.php?t=263174
XDA Developers is an extremely good resource...
May 13, 2009 at 8:10 am
Joe (5/13/2009)
I am OK with SMS; that is what I am using now; The only problem is ring tone; when I am sleeping I want something to ring for a...
May 13, 2009 at 7:46 am
I think you want something like this
select case when amount 15000 and terms 15000 and terms between 12 and 60 then amount else null end as criteria3
from...
May 13, 2009 at 7:45 am
Kit G (5/13/2009)
May 13, 2009 at 7:22 am
This could be done dynamically in SSIS if you break away from the standard data flow model.
First questions though
Is this excel 2003 or 2007
How many rows of data are there?
May 13, 2009 at 7:19 am
Viewing 15 posts - 166 through 180 (of 322 total)