Viewing 15 posts - 61 through 75 (of 130 total)
isn't it more efficient to process the load all in the SSIS pipeline?
if you are just calling stored procedures from the SSIS package then you might as well...
January 13, 2012 at 12:32 pm
I didn't have time to build a test table but I think something like this would work:
WITH Summary AS
(
SELECT
SERVERIP,
COUNT(*) AS [COUNT]
FROM
VID_SERVER
GROUP BY SERVERIP
WHERE BASESCORE >=...
January 10, 2012 at 6:39 pm
If the time it takes to backup and restore is unacceptable perhaps you could increased the speed of backup by splitting it into mutiple files and if you have multiple...
January 9, 2012 at 6:13 pm
adding additional files allows SQL to use more "workers" to allocate new pages as objects are created/dropped in the tempDB. On a busy system there can be a lot...
January 9, 2012 at 6:02 pm
Insert the key into the fact table from your dimension table joined to the incoming data.
January 6, 2012 at 5:07 pm
This works for me:
SELECT CAST(CAST(@InitiationDateTime AS DATE) AS DATETIME) + @SheduledTime
January 3, 2012 at 5:12 pm
As pointed out previously there are several versions. I always assumed that Rudolph only participated during the "foggy christmas eve".
December 27, 2011 at 12:48 pm
If the table\index fits on less than 8 pages then reindex procedures will ignore it because it is on a mixed extent.
November 28, 2011 at 6:04 pm
You're welcome. I think I read somewhere that this is the go forward method of using linked servers that the "openquery" method would be depricated at some point,...
November 23, 2011 at 3:05 pm
Try this:
EXEC ('set fmtonly off; set nocount on; DBCC Showfilestats WITH no_infomsgs') at [Nameoflinkedserver]
November 22, 2011 at 4:49 pm
If you are using windows authentication it sounds like permissions on a double hop. Are you running this in your local laptop/desktop connected to a SQL server where there...
November 22, 2011 at 2:16 pm
This probably falls under the Kerberos "Double Hop" problem. When you log into a server (connect with a client application) the server authenticates your login with the active directory....
November 18, 2011 at 5:53 pm
Silly question, is the Login added to the server with permissions to connect to a database(s)?
November 15, 2011 at 2:42 pm
Without creating the objects this might be a guess but I think this part of your query:
(SELECT SUM(dbo.ART_Exp_Records.Exp_Csm_Value)
FROM dbo.ART_Exp_Records INNER JOIN
dbo.ART_Exp_Sheets ON dbo.ART_Exp_Records.Exp_Sheet_ID = dbo.ART_Exp_Sheets.Exp_Sheet_ID
GROUP BY dbo.ART_Consortiums.Csm_ID, dbo.ART_Exp_Sheets.Sheet_Year,
dbo.ART_Exp_Sheets.Sheet_Month,...
November 15, 2011 at 2:38 pm
November 15, 2011 at 2:26 pm
Viewing 15 posts - 61 through 75 (of 130 total)