Viewing 15 posts - 1 through 15 (of 17 total)
It's hard to say if that is normal without knowing what type of system your database supports and your environment. I can tell you what happens when I perform...
October 13, 2011 at 9:21 pm
Generate scripts can be used to set up your table structure and copy any other objects needed such as stored procedures and functions. To move the data, I would...
October 13, 2011 at 8:44 am
Try using an actual share \\SERVER\SHARE\ and give the appropriate permissions to the share. I think using \\SERVER\C$ could be the problem.
October 13, 2011 at 7:21 am
Try moving the file local to the server. Put it on c:\import\ and see if it throws the same error. I think you are correct, it's not the...
October 12, 2011 at 8:36 pm
Does the agent account (or the account running the agent job) have permissions to the directory? Is it on a file share that you only have access to?
October 12, 2011 at 2:48 pm
SELECT ord.CustomerID, c.companyname, ord.Max_Shipped_Date
FROM
( Select CustomerID, max(ShippedDate) as Max_Shipped_Date
From Orders
Group by CustomerID
)ord
JOIN
Customers c ON ord.CustomerID = c.CustomerID
where c.Country='usa'
-- GROUP BY ord.CustomerID, c.CompanyName -- Error because your ord.Max_Ship_Date. I...
October 12, 2011 at 2:32 pm
This article looks straight forward and even has an example procedure. Have you tried this?
October 12, 2011 at 2:26 pm
Check the permissions of the account running mirroring. Not 100% sure but should be the service account.
October 11, 2011 at 3:29 pm
Change line:
FROM #DBFRAGMENT where ltrim(rtrim(#DBFRAGMENT.indexname))<> ''''' -- ADD A SINGLE QUOTE
To have another single quote. When I pasted this in an editor, the next line with the EXEC...
October 11, 2011 at 3:24 pm
You may need to restart the SQL service. I get this error about once a month and restarting the service clears it.
May 16, 2011 at 3:28 pm
These messages were going to my junk folder. For some reason they were not doing that before. This is a non-issue.
April 28, 2010 at 9:57 am
Try using dynamic SQL to concatinate the variable into your view. I assume you do not want the variable to be created as part of the view rather whatever...
April 28, 2010 at 9:48 am
Ummm.... I had an error when processing this sql. That is the option I picked before I answered and decided to check it after I was wrong.
August 25, 2009 at 6:55 am
I just guessed. This one was way to much to think about.
August 21, 2009 at 7:25 am
Viewing 15 posts - 1 through 15 (of 17 total)