Viewing 15 posts - 4,951 through 4,965 (of 5,588 total)
Jack Corbett (10/19/2009)
WayneS (10/19/2009)
... banging head on desk ...The developer's head right! 😉
Oh how I wish he were local... then it would be his head 😀
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
October 19, 2009 at 9:34 pm
Hey Jeff... can you FedEx me your biggest, baddest pork chop launcher? I think I'm in dire need of it.....
Just had a "developer" send me some code.
SP "a" has a...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
October 19, 2009 at 7:25 pm
Both.
As mentioned, there will be many more that deal with things at the object level. But, someone has to move those bits around for those to do that.
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
October 16, 2009 at 6:14 am
You might check this link out - but be forewarned - it doesn't look like it's been tested.
Since you're talking about a new server, you also could restore the system...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
October 15, 2009 at 5:58 am
GSquared (10/14/2009)
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
October 14, 2009 at 6:13 pm
I used this for copying from SQL 2008 -> 2008. It should work 2005 -> 2008.
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
October 13, 2009 at 6:08 pm
You know, the people that help out here are all un-paid volunteers. Providing the DDL scripts (CREATE TABLE, CREATE INDEX, etc.) for the tables affected, and INSERT statements to put...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
October 13, 2009 at 6:06 pm
GSquared (10/12/2009)
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
October 13, 2009 at 5:34 pm
abair34 (10/9/2009)
AS
BEGIN
SET NOCOUNT ON
IF NOT EXISTS (SELECT * FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME = 'CHEATTABLE')
CREATE TABLE CHEATTABLE (id INT, name varchar(50));
WITH i_copied_this_from_the_internet_CTE AS
( SELECT row_number() OVER (ORDER...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
October 9, 2009 at 5:57 pm
Well, with 100+ points accumulated, you're not that new. But I'm glad that you will now be able to help us in the future... it really makes it sooooo...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
October 9, 2009 at 5:47 pm
Jeff Moden (10/8/2009)
Heh... I know it's a couple/three months old now but I've not seen it before.
Thanks for bringing this to us Jeff, I hadn't seen that reply. (And since...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
October 9, 2009 at 2:52 am
Regarding Mark's solution, what would (IMHO) be better is if your application already had this table defined. Those codes are coming from someplace, just connect the ClassCode to the ClassType...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
October 9, 2009 at 2:26 am
Damian, I also thought it was on the easy side. But, I was also (pleasantly) surprised at the high number of folks that got this right (69% at the time...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
October 9, 2009 at 2:15 am
You know, the people that help out here are all un-paid volunteers. Providing the DDL scripts (CREATE TABLE, CREATE INDEX, etc.) for the tables affected, and INSERT statements to put...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
October 8, 2009 at 8:58 pm
setlan1983 (10/8/2009)
But if I want archive the following:
1. "SELECT Sum(SalesAmt) AS TotalSales, COUNT(*) AS TotalTrans FROM DB_A.Sales WHERE TransDT...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
October 8, 2009 at 8:35 pm
Viewing 15 posts - 4,951 through 4,965 (of 5,588 total)