Viewing 15 posts - 211 through 225 (of 566 total)
I'd start w/ the network adapter on the active node - are you running 100mbps or 1000mbps? Full duplex? What is the response when running a tracert? Good luck 🙂
February 29, 2008 at 10:36 am
Fingers crossed, thanks Andras 🙂
February 29, 2008 at 10:26 am
select @@servername should return the name of your server in which case I'm assuming you just want to change the registration properties within EM? You can delete the registration in...
February 29, 2008 at 10:19 am
If installed prior to 02/29, any ideas wether or not services will come back online after 03/01 or are we looking at a reinstall?
February 29, 2008 at 10:16 am
Are you using SQL or SSPI authentication for the OLEDB connection in your second package? Are you storing the package in msdb or on the file system?
February 29, 2008 at 9:29 am
Andras - I've been beating my head against the wall all morning trying to figure this out. Thanks for the post - at least I'm not going crazy 😀
February 29, 2008 at 9:10 am
NP, Good luck 🙂
February 27, 2008 at 12:06 pm
Try -
@[User::Path] + "\\" + "Holdings_" + (DT_STR,4,1252) DatePart("yyyy",getdate()) + Right("0" + (DT_STR,4,1252) DatePart("m",getdate()),2) + Right("0" + (DT_STR,4,1252) DatePart("d",getdate()),2) + ".csv"
February 27, 2008 at 11:21 am
Keep in mind that sp_updatestats updates statistics by using the default sampling which is typcially 10%. I would recommend a fullscan.
February 26, 2008 at 1:36 pm
NP 🙂
February 26, 2008 at 11:22 am
Use a WHILE loop to incrementaly update the records using a ROWLOCK hint. A crude example, but you get the idea 🙂
create table ##UpdateRows(somePK int)
insert into ##UpdateRows
select somePK
from sometable
where something...
February 26, 2008 at 7:46 am
You could also acomplish this within a script task. Let's assume you have the following variables:
FileDirectory, string, C:\TEMP
FileName, string, SomeFileName.csv
Imports System
Imports System.Data
Imports System.Math
Imports Microsoft.SqlServer.Dts.Runtime
Imports System.IO
Public Class ScriptMain
...
February 26, 2008 at 7:29 am
Have you updated your statistics? Run a DBCC SHOWSTATISTICS (tableName, IndexName) on some your larger tables, post the results. You may need to update statistics with a fullscan (sample script...
February 25, 2008 at 3:32 pm
Have you tried disabling the service? Did the event logs reveal any information on what account/process is responsible for restarting the service?
February 25, 2008 at 2:04 pm
Viewing 15 posts - 211 through 225 (of 566 total)