Viewing 15 posts - 4,666 through 4,680 (of 6,679 total)
Execute sp_help sysdtspackages90
Shows us that the primary key has been defined on the following columns: folderid, name
That should uniquely identify the row - which should also uniquely identify the package.
August 18, 2009 at 1:14 pm
The question I have would be why do you feel it is necessary to shrink the log file?
In most cases, this is due to not having regular transaction log backups...
August 18, 2009 at 11:40 am
It will only be a problem if you have 8 separate 1-core processors on the machine. I doubt that very much and would think you either have 4-dual core...
August 18, 2009 at 11:24 am
I wouldn't necessarily ignore the date - just understand that it is going to be unique based upon UTC time instead of local time. You still have to have...
August 18, 2009 at 7:50 am
Jeffrey Williams (8/17/2009)
This was not an...
August 17, 2009 at 3:56 pm
santosh.shrestha (8/17/2009)
CREATE TABLE Temp1 (
Aa varchar(10),
Bb varchar(10),
Cc varchar(10),
Dd varchar(10),
Ee varchar(10),
Ff varchar(10),
Gg varchar(10),
Hh varchar(10)
)
Now let us insert some thing in table so
INSERT INTO Temp1...
August 17, 2009 at 3:36 pm
And, after running those - what are your conclusions? Or did you just run them and paste the results here for me to interpret?
This was not an exercise for...
August 17, 2009 at 3:03 pm
I think we should really consider what the OP really wants to be able to accomplish. Most likely, they are looking for a way to have multiple default instances...
August 17, 2009 at 2:43 pm
santosh.shrestha (8/17/2009)
August 17, 2009 at 2:09 pm
Elliott W (8/17/2009)
Perhaps I'm being too semantic, I see default as if you install the product and do nothing else you can always count on the port being 1433 for...
August 17, 2009 at 2:01 pm
Run the following and see what you get:
SELECT getdate(), getutcdate();
SELECT datediff(hour, getdate(), getutcdate());
SELECT dateadd(hour, 7, '20090817 08:00:01');
August 17, 2009 at 1:53 pm
Why don't you follow the advice in the error message and enable remote errors?
http://msdn.microsoft.com/en-us/library/aa337165(SQL.90).aspx
My recommendation would be to create a shared data source on the server and then modify your...
August 16, 2009 at 3:35 pm
bpowers (8/15/2009)
How would I get this to work?SELECT EMP_ID, DATEDIFF(MONTH, START_DATE, END_DATE) AS HISTORY
FROM EMP_HISTORY
WHERE EMP_ID = '253'
What doesn't work with the above? You can't just ask us to...
August 15, 2009 at 3:47 pm
Viewing 15 posts - 4,666 through 4,680 (of 6,679 total)