Viewing 15 posts - 211 through 225 (of 323 total)
You can try with Import / Export wizard for table & data, and manually compile other scripts.
October 15, 2008 at 2:17 am
In SSRS, shared databse means: a datasource can be used in many reports.
otherwise you can create different datasource for each report.
October 15, 2008 at 12:59 am
Use the following string:
Driver={SQL Server};Server=myServerAddress;Database=myDataBase;Uid=myUsername;Pwd=myPassword;
If still have problem to connect, try the following way:
* Install SQL 2000 client tools in any one of Windows XP machine and then...
October 15, 2008 at 12:55 am
search "Using XML in SQL Server" in SQL BOL.
ms-help://MS.SQLCC.v9/MS.SQLSVR.v9.en/udb9/html/a699d976-8099-4af1-a2f8-cd0e2bd57a83.htm
October 15, 2008 at 12:40 am
search "Using XML in SQL Server" in SQL BOL.
October 15, 2008 at 12:36 am
check in google.com.
Links:
http://www.microsoft.com/technet/prodtechnol/sql/2005/recomp.mspx
http://decipherinfosys.wordpress.com/2007/09/19/procedure-cache-in-sql-server-2005/
October 15, 2008 at 12:29 am
you can find with sp_who2, try it once.
October 14, 2008 at 3:13 am
use IsNull, COALESCE functions, for more information, see SQL BOL.
October 14, 2008 at 3:09 am
After installing SQL 2005, goto SQL Server Surface Area Configuration and change the configuration settings.
October 14, 2008 at 1:55 am
You need permission on backup folder. check with your administrator.
October 14, 2008 at 12:02 am
above links helps to install unattended sql server installation.
🙂
October 13, 2008 at 6:16 am
if SQL 2000 and below version, check the "Client Network Utility" and configure it.
SQL 2005 and above version, go through the "SQL Server configuration Manager" and configure it.
October 13, 2008 at 6:14 am
you play with "information_schema.columns", based on this you can generate dynamic sql statement.
October 13, 2008 at 5:41 am
run the following DBCC commands:
DBCC CHECKDB
DBCC CHECKTABLE
DBCC CHECKCATALOG
DBCC UPDATEUSAGE
try it, may solve your problem.
October 13, 2008 at 5:36 am
Check the "Installing SQL Server" on BOL.
October 13, 2008 at 5:28 am
Viewing 15 posts - 211 through 225 (of 323 total)