Viewing 15 posts - 4,216 through 4,230 (of 5,588 total)
If anyone would care to comment on this SQL 2008 Upgrade Advisor message, I would really appreciate it!
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
May 6, 2010 at 9:06 am
This might help you somewhat.
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
May 5, 2010 at 7:39 pm
You might want to take a look into DDL triggers.
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
May 5, 2010 at 7:30 pm
lmu92 (5/5/2010)
Might be agood idea to turn it into an article...
Yes, it would. Which reminds me... are you writing one based upon that post last year where you found something...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
May 5, 2010 at 7:27 pm
lmu92 (5/5/2010)
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
May 5, 2010 at 5:10 pm
johnzabroski (5/5/2010)
Sample data:
"1"|"7"|"D"|"2"|"_"||05/25/2007|05/25/2007|10.00|2.15
Should be:
"1"|"7"|"D"|"2"|"_"|""|05/25/2007|05/25/2007|10.00|2.15
First, thanks for the sample data.
In going with Lynn's suggestion, let's first load this stuff into a temp (aka staging) table.
IF OBJECT_ID('tempdb..#test') IS NOT NULL DROP TABLE...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
May 5, 2010 at 4:49 pm
Paul White NZ (5/5/2010)
Hey Wayne,How come your 2008 server is still at RTM? You're missing some pretty important fixes :crying:
:blush: it's the dev edition on my work laptop..... we're...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
May 5, 2010 at 1:38 pm
Paul White NZ (5/4/2010)
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
May 5, 2010 at 8:00 am
Paul White NZ (5/4/2010)
Results so far for SELECT ROUND(0.5, 0) for me:
Paul, this question has turned into a very interesting topic.
I also have isqlw / isql for SQL 2000 available,...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
May 4, 2010 at 1:28 pm
Paul White NZ (5/4/2010)
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
May 4, 2010 at 7:51 am
Lynn Pettis (5/3/2010)
jcrawf02 (5/3/2010)
Lynn Pettis (5/3/2010)
Do we need to draw a picture of what we are requesting?reference: See Wayne's Avatar
Yes, that is exactly what it feels like. 😛
Glad you noticed......
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
May 3, 2010 at 7:53 pm
Paul White NZ (5/3/2010)
Gianluca Sartori (5/3/2010)
I would have put some more BREAK / CONTINUE in it and maybe...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
May 3, 2010 at 2:38 am
mister.magoo (5/2/2010)
declare @test-2 TABLE (RowID int IDENTITY, Data varchar(200))
insert into @test-2
select 'some regular text' UNION ALL
select 'email: <bob.jones@domain.com>' UNION ALL
select 'Tom &...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
May 2, 2010 at 12:19 pm
Digs (5/1/2010)
All works fine: And Fast !
I will keep your name on my list when I need to spend $$$ on my project .
Minutes have gone down to seconds...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
May 2, 2010 at 8:52 am
As to the "Why", check out this link.
One thing to note there is that you can utilize a processing-instruction (thanks Jason & Paul!). So, this code might help you out.
declare...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
May 2, 2010 at 8:16 am
Viewing 15 posts - 4,216 through 4,230 (of 5,588 total)