Viewing 15 posts - 931 through 945 (of 1,554 total)
Please do make sure that the account SQL Agent is using has the needed permissions.
A quick way might be to just create and run a job that does
September 6, 2005 at 4:44 am
If your VB code connects with the same user account as you logged in with when running the proc from Query Analyzer - then the result should indeed be sent to...
September 6, 2005 at 4:35 am
This works just fine;
exec sp_msforeachdb 'use ? select db_name() as ''now processing'' exec sp_helpdb ?'
..so maybe try:
exec sp_msforeachdb 'use ? select db_name() as ''now processing''...
September 6, 2005 at 4:27 am
Agreed, this makes no sense and is very confusing.
Like the cities supplied as example:
2 city1
2 city2
2 city3
2 city4
Four cities with the same ID..?
IMO, what needs to be...
September 6, 2005 at 4:15 am
Is this a one-time operation, or do you plan doing it on a regular basis? 30 million rows will indeed take quite a while...
/Kenneth
September 5, 2005 at 3:44 am
On a note on formats for input into datetime datatypes
Don't use anything else than yyyymmdd as input format for dates. Do your utmost to enforce this, and your dating troubles...
September 2, 2005 at 7:44 am
Try firing up profiler and then create an object. The trace should be able to tell you what is happening.
/Kenneth
September 2, 2005 at 7:30 am
Have a look here http://support.microsoft.com/default.aspx?scid=kb;en-us;254321
There's a paragraph dealing with applying sp's on clusters and different versions of SQL Server.
/Kenneth
September 2, 2005 at 7:19 am
You should probably ask this question in a Access forum instead, where they have more experience with Access.
/Kenneth
September 2, 2005 at 6:36 am
Happens to all of us, especially on Fridays
/Kenneth
September 2, 2005 at 3:41 am
Well, it doesn't get 'simple' until SQL Server 2005, when we get a ROW_NUMBER() function.
However, in the meantime you can do like this:
September 2, 2005 at 3:36 am
Have you tried it? Many times it's pretty easy to mock up something simple to test code behaviours..
declare @status char(1), @Tol_status char(1)
set @status = 'R'
Set @Tol_status = 'U'
if(@Status = @Tol_Status)
...
September 1, 2005 at 8:23 am
I have no experience with neither of those tools, but I wonder what kind of crystal ball they have built in if they do any better guessing than anyone else,...
September 1, 2005 at 6:52 am
Have a look in BOL (Books on Line) about distributed transactions (lots to read) and check that you have everything required in place for this to work.
/Kenneth
August 31, 2005 at 8:36 am
Easy, it can't be done.
Boy or girl? Kim, Robin, Stac(e)y, Hilary.. I'm sure there are lots of more gender-generic names out there...
/Kenneth
August 31, 2005 at 8:31 am
Viewing 15 posts - 931 through 945 (of 1,554 total)