Viewing 15 posts - 181 through 195 (of 226 total)
Mostly he meant to say restore the database from a backup copy. Please confirm with developer if this what he meant. I guess you are new to DBA role. I...
August 29, 2005 at 5:29 pm
Can you post your work in progress query. It will be easier to work on it
August 29, 2005 at 5:27 pm
Nice article. It really does not matter if things are all over the internet. I appreciate you taking the time and writting the article. I am sure atleast one of...
August 29, 2005 at 1:19 am
Q: What’s the different between char() and varchar()?
A: char() only holds letters while varchar() holds letters and numbers.
Experience: This DBA has 8yrs.
If I hear such answer even from a person...
August 17, 2005 at 11:37 pm
I did the wrapper sp but wanted to know the reason. Thanks for the explanation of why xp_sendmail was not working
August 15, 2005 at 7:56 pm
Thanks James Horsley . Though the vbs code works I will be still implementing the tool as it have the error logging feature.
You...
August 12, 2005 at 1:14 pm
We do not need any VB or a tool to do this
SQlServer=WScript.Arguments(0)
Filename=WScript.Arguments(1)
UserId=WScript.Arguments(2)
Password=WScript.Arguments(3)
const TrustedConnection = 256
Dim PackageDate
Dim VersionId
Dim PackageId
Set oPackage1 = CreateObject("DTS.Package2")
For each PackageInfo in oPackage1.GetSavedPackageInfos(Filename)
If PackageDate < PackageInfo.VersionSaveDate Then...
August 12, 2005 at 12:52 pm
Thanks for the reply I have solved the version problem by changing the scripts
SQlServer=WScript.Arguments(0)
Filename=WScript.Arguments(1)
UserId=WScript.Arguments(2)
Password=WScript.Arguments(3)
const TrustedConnection = 256
Dim PackageDate
Dim VersionId
Dim PackageId
Set oPackage1 = CreateObject("DTS.Package2")
For each PackageInfo in oPackage1.GetSavedPackageInfos(Filename)
If PackageDate <...
August 12, 2005 at 12:50 pm
I think I am able to restore the DTS from storage file even with multiple package. Will post the code after I complete the project.
Thank you to all of you...
August 11, 2005 at 4:53 pm
Based on the following article
http://www.databasejournal.com/features/mssql/article.php/10894_3417651_2
I am able to restore multiple package but the problem is if the package has multiple version it fails. To specify the version in LoadFromStorageFile I...
August 11, 2005 at 3:32 pm
my question is how can I get the lastest version Id using TSQL or vbs.
In VBS when I use Set objPkgInfos = CreateObject("DTS.SavedPackageInfos"). I get error of cannot create object.
Anyone know...
August 11, 2005 at 2:20 pm
COALESCE is fair better than isnull and I make my DBAs use COALESCE.
Example
DECLARE @a TinyInt
SELECT ISNULL(@A,256)
This will lead into Arithmetic overflow error for data type tinyint, value...
June 27, 2005 at 3:55 pm
Guys
if you can telecommute then offshore your work to India or China by paying 50% of your salary
June 23, 2005 at 10:31 am
Tao
You are correct again. I guess I should have included this as part of the article. Good I am learning the art of writing
June 23, 2005 at 9:57 am
Viewing 15 posts - 181 through 195 (of 226 total)