Viewing 15 posts - 6,511 through 6,525 (of 9,643 total)
Michael Earl (12/22/2008)
Ok, what happened here?http://www.sqlservercentral.com/Forums/Topic624072-146-1.aspx
Someone trying to see if they could get on this thread?
December 22, 2008 at 10:42 am
Do you have any other applications connecting to this data source? Are they having any issues? Any errors in the SQL Server or Windows error logs?
December 21, 2008 at 8:40 pm
My vote is permissions. Verify the SQL Server login you created for the linked server has rights to the database and table.
December 19, 2008 at 3:24 pm
Without seeing the DDL and having some test data, see the link in my signature, it is hard to give you an exact answer,
but I think this will do...
December 19, 2008 at 2:16 pm
What is the error? You didn't include it in the post anywhere.
December 19, 2008 at 1:57 pm
Wish I could do more, but I don't have a 64-bit box to experiment with right now.
December 19, 2008 at 12:43 pm
Your SQL Server is set to recognize dates in mdy and the parameter you have on your convert is producing dmy so when sql server is converting it back to...
December 19, 2008 at 11:45 am
I've never been involved in scouting, but I have about 10 years of coaching various sports from youth to High School and I agree that it is very rewarding to...
December 19, 2008 at 9:38 am
Lynn,
I went the simply route and looked at the Summary logs first, side by side. Here are the sections:
Dev01:
Products Detected ...
December 19, 2008 at 9:11 am
One thing I noticed pretty quickly is that the 2 servers have different builds and the one that worked has a later build. I don't know why that would...
December 19, 2008 at 8:54 am
Jonathan Kehayias (12/19/2008)
I would have missed that @@datefirst part. Nice example Jack.
Thanks, I only got it because I had to lookup what number was returned for Wednesday and...
December 19, 2008 at 7:36 am
I agree with Jonathan. Here's a basic idea of what you would want to do:
[font="Courier New"]SELECT TOP 366
IDENTITY(INT, 1, 1) AS n
INTO
#nums
FROM
sys.all_objects
SELECT
DATEADD(DAY,...
December 19, 2008 at 7:26 am
A good place to start would be in the Scripts section of this site. Here is a list of security based scripts: http://www.sqlservercentral.com/Scripts/Administration/Security/. One of these should point...
December 19, 2008 at 7:11 am
You can just use the parameter in the Header. Like this:
="Fee Date: " & Parameters!feeDate.Value
December 19, 2008 at 7:09 am
Viewing 15 posts - 6,511 through 6,525 (of 9,643 total)