Viewing 15 posts - 5,041 through 5,055 (of 5,588 total)
shadigirgis (7/7/2009)
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
July 7, 2009 at 5:22 pm
Here you go.
Note that you don't actually have a NULL value in Field2; instead you have the string "NULL'. The code handles this.
-- with this clustered index, the following update...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
July 7, 2009 at 5:05 pm
kenny_scriber (7/7/2009)
PK ID...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
July 7, 2009 at 12:25 pm
Ooooookay.... and I thought I had a good idea here.:sick:
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
July 6, 2009 at 9:37 pm
Duplicate post, please post replies here.
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
July 6, 2009 at 9:33 pm
Duplicate post, please post replies here.
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
July 6, 2009 at 9:32 pm
Sorry, post appeared to hang and accidentally double-posted.
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
July 6, 2009 at 9:25 pm
Jeff,
I'm pretty sure I know what your Tally table test is doing... but what is the difference between your "XML" and "XML2" tests? Would you be able to post your...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
July 6, 2009 at 9:20 pm
If you go back to the original post, and press the quote button, you well see that the element are in mixed case. Your browser may display them as upper...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
July 6, 2009 at 9:05 pm
This web site has a history of mucking up xml text. I suggest that you attach a file with your xml code in it - save it as a .txt...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
July 6, 2009 at 8:52 pm
kishorech17 (7/6/2009)
Can anybody give few quick points on new features in SQL 2008, I really appriciate:-)
http://www.microsoft.com/sqlserver/2008/en/us/whats-new.aspx
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
July 6, 2009 at 8:45 pm
You don't have to give "blocks" of numbers out.
If you had tables like:
CREATE TABLE Company (
CompanyID int NOT NULL identity PRIMARY KEY,
...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
July 6, 2009 at 8:40 pm
Edward (7/6/2009)
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
July 6, 2009 at 7:20 pm
Steve Jones - Editor (7/6/2009)
Please drop examples of issues in here.
Steve,
I can read this two different ways, and I can't tell which way you mean:
1. Post all examples of the...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
July 6, 2009 at 7:00 pm
This should do it.
declare @test1 table (Tname varchar(1000))
insert into @test1 (Tname) values ('<>Agenda and Minute')
insert into @test1 (Tname) values ('<>Agenda and Minute')
insert into @test1 (Tname) values ('<>Agenda and Minute')
insert into...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
July 6, 2009 at 6:53 pm
Viewing 15 posts - 5,041 through 5,055 (of 5,588 total)