Viewing 15 posts - 2,701 through 2,715 (of 5,588 total)
ALZDBA (10/27/2010)
how about :- Anger management 101
The 100 classes haven't been helping... I think I need the 200 classes now. :w00t:
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
October 27, 2010 at 2:43 pm
Steve Jones - SSC Editor (10/27/2010)
- Finding/changing the default backup location
- scheduling a trace
- duplicating...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
October 27, 2010 at 1:17 pm
Brandie, if I'm understand you correctly, you are saying to dynamically set the file name.
This part is fine... what I need is that columns associated with both the source SQL...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
October 27, 2010 at 1:07 pm
Brandie Tarvin (10/27/2010)
WayneS (10/27/2010)
Questions about this in general:1. How do we "submit" these "articles"?
Look in the upper left hand sidebar. "Write For Us" has all the details. You'll have to...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
October 27, 2010 at 11:37 am
Steve Jones - SSC Editor (10/27/2010)
- Finding/changing the default backup location
- scheduling a trace
- duplicating...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
October 27, 2010 at 11:13 am
Steve Jones - SSC Editor (10/27/2010)
I wonder if any of you would be interested in writing to fill holes? I keep finding posts here, and elsewhere...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
October 27, 2010 at 11:09 am
GSquared (10/27/2010)
WayneS (10/27/2010)
GSquared (10/27/2010)
WayneS (10/26/2010)
Since you seem to know SSIS pretty well, I have a question for you. Is there a way to have a query that generates dynamic columns...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
October 27, 2010 at 10:32 am
GilaMonster (10/26/2010)
Trey Staker (10/26/2010)
@Gail, how's that difficult contract going?Difficultly.
Officially going to prod on Friday.
And how long after Friday do you think it will take for everything to be working...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
October 27, 2010 at 10:18 am
Gianluca's solution is missing one minor, easily overlook thing. Easily fixed with four lines of code:
-- at the top of the code
DECLARE @OldDateFirst tinyint;
SET @OldDateFirst = @@DateFirst;
SET DATEFIRST 7;
-- put...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
October 27, 2010 at 9:48 am
It sounds to me that what you want is a NULL. If so, just leave it undefined.
Or, if the value is being passed in:
declare @to_date datetime;
set @to_date= NullIF(' ', '...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
October 27, 2010 at 8:16 am
GSquared (10/27/2010)
WayneS (10/26/2010)
Since you seem to know SSIS pretty well, I have a question for you. Is there a way to have a query that generates dynamic columns exported to...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
October 27, 2010 at 8:08 am
Does this help you out?
declare @str varchar(8000);
set @str = 'qothobnslfdnoweavnivmnqpwf';
;WITH
TENS (N) AS (SELECT 0 UNION ALL SELECT 0 UNION ALL SELECT 0 UNION ALL
...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
October 26, 2010 at 10:57 pm
Cross-posted. Please post all responses here.
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
October 26, 2010 at 10:52 pm
GSquared (10/26/2010)
Jeff Moden (10/24/2010)
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
October 26, 2010 at 9:47 pm
Brian Brennan (10/26/2010)
Is there a way to use ALTER DATABASE to simply change a file's location?
Yes. Use the MODIFY FILE option here
I can see how reusing the virtual cluster names...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
October 26, 2010 at 1:02 pm
Viewing 15 posts - 2,701 through 2,715 (of 5,588 total)