Viewing 15 posts - 316 through 330 (of 455 total)
Well MySQL 5.0 that is a free download from the mysql site supports stored procedures however there are syntax issues with respect to syntax's adopted in SQL Server and MySQL.
May 1, 2006 at 11:58 pm
If you have scheduled a regular backup plan, the inactive transaction log is automatically truncated after the backup process is completed in SIMPLE recovery mode.
May 1, 2006 at 7:53 am
You should probably schedule maintanence plans on your database during weekends to shrink your log files on a periodical basis using DBCC commands.
May 1, 2006 at 7:25 am
Just as an alternate create a stored procedure and populate the values of the above sql code into a temp table and retrieve the data from the table and map...
April 29, 2006 at 5:23 am
Try Modifying your stored procedure to include a alias name for the field that is fetched using CASE
" CASE
WHEN description is null THEN #temp1.t_name
ELSE #temp2.description
END AS description
AS description...
April 27, 2006 at 10:28 am
Well I am not sure if I got your question right but you can try this.
CREATE
TABLE client
(clientID int
April 27, 2006 at 10:24 am
Thanks John for the quick reply, however my requirement is a little different, this I need for boot strapping databases at various locations and I will not have the source...
April 26, 2006 at 11:48 pm
I don't think you can set the default value to '0' at the database level, either we need to write a iterative procedure that uses DBCC CHECKIDENT to scan through...
April 25, 2006 at 5:40 am
Yes, I got your point, I thought you were not able to place the database fields on the footer, yes placing a table , matrix or a list is not...
March 27, 2006 at 11:11 pm
How are you passing the parameters to the report, if you are using a interface to call your report by passing the dates, its always advised to do the check...
March 27, 2006 at 6:44 am
I believe you can insert database fields in the Footer section. Is there any specific problem that you are facing in placing a database field in the footer area.
March 27, 2006 at 2:50 am
Check in case if the drive on which u are having the log files is compression formatted.
January 20, 2006 at 8:35 am
Basically, as you rightly mentioned there is no relationship between CategoryID on Category table and CategoryID on userCategory table logically since it is not possible to define a reference on...
September 24, 2005 at 2:52 am
There are definitely some performance issues with SP4 on SQL Server 2k, for more information please follow this link.
http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=52230
Thanks
September 20, 2005 at 10:44 am
This Link from Microsoft Should help you with a work around for your problem
http://support.microsoft.com/default.aspx?scid=kb;en-us;305711
Thanks
September 20, 2005 at 10:37 am
Viewing 15 posts - 316 through 330 (of 455 total)