Viewing 15 posts - 3,496 through 3,510 (of 5,588 total)
tsmith-960032 (8/30/2010)
WayneS (8/27/2010)
If you are...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
August 30, 2010 at 3:45 pm
The reasons that you've stated are all good reasons for leaving. Your concerns about leaving are also valid.
Have you talked with your supervisor about the rut you're in?
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
August 30, 2010 at 3:37 pm
Check out this link
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
August 30, 2010 at 3:23 pm
jesuslives01 (8/30/2010)
I tried it with and without the ';User...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
August 30, 2010 at 3:21 pm
vrkn82 (8/30/2010)
How trigger works on update statement affecting more than one row?
If coded properly as a set-based operation, just fine.
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
August 30, 2010 at 3:18 pm
Remove your where clause completely - this is filtering the result set.
Make your from clause:
FROM
@Timecards TC LEFT JOIN @ProtectionFactors PF
...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
August 30, 2010 at 2:41 pm
Excellent start.
One question: Based on the sample data provided, what should the result set look like?
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
August 30, 2010 at 2:31 pm
Oh - one other thing.
Run DBCC CHECKCATALOG while you are in SQL 2000 (you should run DBCC CHECKDB also).
This will detect if any system tables have orphaned records, from where...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
August 30, 2010 at 2:25 pm
CirquedeSQLeil (8/30/2010)
Here is the doc that should be useful and that explains the need to do a side by side for situations such as yours.
Thanks Jason, I should have put...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
August 30, 2010 at 2:18 pm
CirquedeSQLeil (8/30/2010)
Steve Jones - Editor (8/30/2010)
WayneS (8/30/2010)
Anyone here going to the SQL Server Connections in Las Vegas Nov 1-4?I will be there. Look me up
I will.
Wayne, call me when you...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
August 30, 2010 at 2:09 pm
You will not be able to do an in-place upgrade, where the existing server is upgraded, since you are going from 32-bit to 64-bit.
1. script logins/custom messages/jobs/operators from existing server....
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
August 30, 2010 at 1:54 pm
Does this get you the data that you're looking for?
SELECT [IndexName] = so.name,
[IndexPos] = sik.keyno,
...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
August 30, 2010 at 1:44 pm
Anyone here going to the SQL Server Connections in Las Vegas Nov 1-4?
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
August 30, 2010 at 1:18 pm
To reinsert the rows that were copied from table1 into table1_save, and subsequently deleted from table1, keeping the original identity value:
SET IDENTITY_INSERT table1 ON
INSERT INTO table1 (list of all columns...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
August 30, 2010 at 1:02 pm
Dan,
These links might also be helpful:
How to: Migrate a Reporting Services Installation
Moving the Report Server Databases to Another Computer
Seems like you can just restore your databases on the new server.
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
August 30, 2010 at 11:02 am
Viewing 15 posts - 3,496 through 3,510 (of 5,588 total)