Viewing 15 posts - 76 through 90 (of 319 total)
refer to SQL Server Tacklebox by Rodney Landrum under the books section.
September 29, 2009 at 4:47 am
I was in a similar situation. Their were no FKs but the
PKs and FKs had a naming convention somewhat like
parenttable : ID PK
Child1: parenttableID FK
Child2: parenttableID FK
It took a bit...
September 29, 2009 at 4:39 am
I think that SSRS report viewer control doesn't exists.
please refer to the below links.
http://msdn.microsoft.com/en-us/library/ms251671(VS.80).aspx
and
September 29, 2009 at 4:24 am
yes..you can use the DMV sys.dm_os_performance_counters.
September 29, 2009 at 4:03 am
I also had a similar problem.
This is what that worked for me.
-SQL SERVER SP3 OR If KB953752 for SQL SERVER SP2
-Report viewer: http://www.microsoft.com/downloads/details.aspx?familyid=82833F27-081D-4B72-83EF-2836360A904D
Install the report viewer on web...
September 29, 2009 at 12:28 am
dba-vb (9/7/2009)
i've a database with full text enabled, by backing up this database,need to restore this backup to new database.
RESTORE DATABASE NEWDB
FROM DISK ='\\DBSERVER\OLDB.BKP'
WITH REPLACE
But it...
September 7, 2009 at 5:21 am
export the trace definition from profiler...i.e. select events and columns and apply filter in a profiler...and then File->export->script trace definition....
September 7, 2009 at 5:14 am
table scan....I think it will be index scan....and query 1 will give a index scan...
September 7, 2009 at 12:10 am
table scan....I think it will be index scan....and query 1 will give a index scan...
September 7, 2009 at 12:07 am
Silverfox (8/27/2009)
thierry.vandurme (8/27/2009)
August 27, 2009 at 5:03 am
tpa (8/11/2009)
Sqlfrenzy (8/11/2009)
Is their a way to handle begin tran statement when executing script thru sqlcmd...
Yep, you could use a transaction like this:
begin tran
:r "C:\sqlscripts\01.script1.sql"
if (@@error != 0) goto endRollback
...
August 11, 2009 at 10:37 am
Is their a way to handle begin tran statement when executing script thru sqlcmd...
August 11, 2009 at 12:14 am
SanjayAttray (7/30/2009)
Sqlfrenzy (7/30/2009)
Create a batch file and place it in the folder containing the scripts...
@for /r %%s in (.) do (echo ..............%%s /b >> "C:\Build...
July 30, 2009 at 10:48 am
An easy way of executing scripts.....
Create a batch file and place it in the folder containing the scripts...
@for /r %%s in (.) do (echo ..............%%s /b >> "C:\Build Deployment\output\Log.txt"
sqlcmd...
July 30, 2009 at 3:54 am
Dan Guzman (7/10/2009)
Sqlfrenzy (7/10/2009)
Dan Guzman (7/10/2009)
July 10, 2009 at 12:11 pm
Viewing 15 posts - 76 through 90 (of 319 total)