Viewing 15 posts - 31 through 45 (of 231 total)
April 14, 2008 at 4:58 am
Hi,
Like Eshwaran said, check this link for more info http://support.microsoft.com/kb/224071
Regards,
Ahmed
December 18, 2007 at 10:40 am
Hi,
Thanks to all.
I work for a company which developps a software to monitor SQL Server database (performance and healt), so when the software was installed in customer system, the customer...
December 18, 2007 at 3:59 am
Hi,
Check the following post http://sql-server-performance.com/Community/forums/p/12553/70520.aspx
Regards,
Ahmed
December 15, 2007 at 8:01 pm
Hi guys,
How to find out databases used as mirror (all time in restoring mode),
to be excluded from the scripts.
Thanks,
Ahmed
December 14, 2007 at 10:37 am
SELECT SUBSTRING(pk, Charindex('=',pk)+1 , len(pk)-Charindex('=',pk)-1) from audit
Regards,
Ahmed
December 14, 2007 at 1:53 am
Hi,
Check the following link http://www.codeproject.com/KB/database/TableValuedFnsAsArrays.aspx
For me this web site is a reference for .net coding.
Regards,
Ahmed
December 13, 2007 at 6:43 pm
Hi,
Thanks David for the info
SET CONCAT_NULL_YIELDS_NULL off
your code
SET CONCAT_NULL_YIELDS_NULL on
Regards,
Ahmed
December 13, 2007 at 5:43 pm
Hi,
You just forgot to initialize your variable.
declare @sqlReturn as varchar(500)
declare @N_int as int
--Initialize your variable, otherwise @sqlReturn=null
set @sqlReturn=''
SET @N_int = 0
While (@N_int <= 7)
BEGIN
select @sqlReturn = @sqlReturn + 'anything'...
December 13, 2007 at 5:24 pm
Hi,
Check the following links:
http://www.sqlservercentral.com/articles/SQL-DMO/sqldmorestore/118/[/url]
http://www.eggheadcafe.com/PrintSearchContent.asp?LINKID=87
Regards,
Ahmed
December 13, 2007 at 10:41 am
Hi,
May be they are already used or blocked (Make sure all your firewall and router ports are open for the port numbers http://database.ittoolbox.com/groups/technical-functional/sql-server-l/need-help-in-database-mirroring-1648286#).
http://www.microsoft.com/technet/prodtechnol/sql/2005/dbmirror.mspx%5B/url%5D
Each database endpoint must specify...
December 13, 2007 at 4:39 am
Hi,
The code is good
Try just to execute in the command line
D:\JPMorgan_IMPORT\pdfcombine.exe D:\431411406.PDF D:\431411408.PDF D:\COMBINED.PDF to see if it works
Check the following link
http://www.coolutils.com/forum/read.php?f=1&i=914&t=914
Regards,
Ahmed
December 13, 2007 at 4:27 am
December 13, 2007 at 3:58 am
Viewing 15 posts - 31 through 45 (of 231 total)