Viewing 15 posts - 1 through 15 (of 15 total)
Good morning all,
Just thought I would post this. It seems to me that the error message I posted, is a generic error message that SQL uses when it cannot for...
August 26, 2015 at 12:59 am
Hi @spaghettidba,
Thanks for your reply. I have followed the advice in the article, and here is my finding (problem still not solved)
On my local machine, with Windows authentication...
August 25, 2015 at 5:45 am
i found the answer...:-P and thought i'd share it for those of you who r interested:
select database_name,max(backup_finish_date) as backup_finish_date from msdb..backupset
where database_name='Libra'
group by database_name
There is also a useful article at:...
June 9, 2009 at 6:36 am
Hello Everyone,
I posted this topic some time ago, and then got busy with something else...
I would like for my PRINT statements in my stored procedures to be written to an...
June 4, 2009 at 1:44 am
Thank you for your input - this solves my problem, as I can now continue with my project...:-)
June 4, 2009 at 1:01 am
i was also thinking about the latter solution, but wondered if there weren't other solutions
thanx, ill give it a try!
April 30, 2009 at 4:14 am
to get the hex value of your job:
select job_id from msdb.dbo.sysjobs where name = 'your_job_name'
to run the sp mentioned above use the following format:
EXECUTE msdb.dbo.sp_sqlagent_log_jobhistory
...
April 29, 2009 at 7:01 am
absolutely FANTASTIC!!
Thank you very much, this is exactly what I was looking for.
I'm writing a java program, and in order to make the functionality as dynamic as can be,...
January 8, 2009 at 4:46 am
yes, maybe it is not the best way to do it, but it has to be done that way;)
January 8, 2009 at 4:15 am
Hello
I can confirm that the query I am trying to execute is of this format, (select * from x).
can you maybe give an example of how the fix will...
October 16, 2008 at 1:20 am
hi, not to worry, solved my own problem and will share the solution with those interested:
declare @date varchar(128)
set @date = select top 1 startTime from table_name order by StartTime asc...
August 26, 2008 at 2:22 am
Hi,
This is cool, but it is not the one I am looking for. I am looking for
C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\LOG
Or am I missing something? can the returned *.ldf file...
July 16, 2008 at 8:33 am
Hi,
is your problem sorted yet?
I agree with the previous writer, but alternatively:
in your vb code, retrieve the resultset with your data;
in the transformation of this data, that is, where you...
July 16, 2008 at 7:38 am
Hello Gail,
thanks for your interest. I have a procedure with an incoming resultset(rs)
then I would like to get all the column names of the particular table, tab separate it, into...
July 7, 2008 at 8:05 am
Viewing 15 posts - 1 through 15 (of 15 total)