Viewing 15 posts - 1,096 through 1,110 (of 1,884 total)
Answers above are correct unless Helen is asking about Scheduled Tasks. I too would like to know how to move Scheduled Tasks from Server to Server including schedules and executables...
January 19, 2006 at 12:15 pm
If I would not be MCDBA on 2000, then I would just pass 1 exam: 70-228, SQL Server 2000 Administration (the official exam title is longer). With this certification you may...
January 18, 2006 at 3:58 pm
Some (not all) recommendations:
1 You may save packages as Visual basic files and search for the production server string if it completely absent. There will be text like this:
oConnection.ConnectionProperties("Data Source")...
January 18, 2006 at 12:45 pm
You may use xp_cmdshell or use Execute Process task.
January 18, 2006 at 12:01 pm
I would use PATINDEX and SUBSTRING functions to isolate the strings and then group by your numbers. PATINDEX shows the first position of the character in the string.
For example,
select patindex('%.%','ctim=0.0.0.12888&track=5')
will...
January 18, 2006 at 10:27 am
We had some problems when creating ActiveX script jobs. What we did is to save a script as a file with extension vbs (like mysript.vbs) and then create a job...
January 18, 2006 at 10:09 am
did you try sp_msforeachtable with truncate table statement? Additionally, in the previous post of JG the type should be U, not P
January 18, 2006 at 10:03 am
oops... knew the answer but got distracted by the tables A and B positions and accidentally clicked the correct position but the wrong operator.
January 18, 2006 at 9:58 am
Dan,
I would like to see if the server is installed in accordance with the purchased license. In our place we have internal/external software audits. Also, I need to make sure that...
January 18, 2006 at 9:12 am
It is OK to do new things not on the first try. I had a blue screen with STOP error myself the first time I tried.
January 17, 2006 at 4:04 pm
Hi,
I did not try it myself, but did you follow the example in
http://msdn2.microsoft.com/en-us/library/ms186329.aspx
It says in the middle after the first example:
To test for updates that affect columns other...
January 17, 2006 at 3:58 pm
Hello,
I don't see anything wrong with the cursors when you have to access the previous /current/next record. The performance issues may be also if you put too much processing into...
January 17, 2006 at 3:39 pm
You may order by your fields, output into temp table with Identity property:
create table ##Ranked ( Rank int IDENTITY, Customer int NOT NULL,SortStart int NOT NULL, SortEnd int NOT NULL)
GO
Insert...
January 17, 2006 at 3:24 pm
You don't need Visual Studio for installing SQL Server 2005. It installs some components of Visual Studio 2005: Analysys Services, Integration Services and Reporting Services projects.
January 17, 2006 at 3:04 pm
Log files are just text files. Try to connect by mapping a drive from your computer and browse to the directory where the logs are.
January 17, 2006 at 1:04 pm
Viewing 15 posts - 1,096 through 1,110 (of 1,884 total)