Viewing 15 posts - 2,716 through 2,730 (of 5,588 total)
Yes. Some of those things get updated also.
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
October 26, 2010 at 12:51 pm
One thing that you're forgetting: on a cluster, you have a virtual sql name for each instance. So, I don't think that you have to worry about the named instance...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
October 26, 2010 at 11:36 am
I think this will do what you're trying to do.
;
WITH CTE AS (
-- first, take the subquery that groups all of the data
SELECT kcfsr_fsi_line.store_number,
...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
October 26, 2010 at 11:03 am
Okay, let's simplify it just a bit more.
1. Put the data directly into an XML variable, instead of a varchar then converting to XML.
2. Use a CTE instead of a...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
October 26, 2010 at 9:42 am
Lowell (10/26/2010)
here's a code example to generate all those commands, which can be examined and run seperately:
Lowell, I'd recommend one change to your code - use the QuoteName() function for...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
October 26, 2010 at 9:14 am
I'm using VMWare Workstation 6.5. Let me know if you want to see version numbers... I can dig those up tonight.
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
October 26, 2010 at 9:07 am
please post the code of what you've tried.
You would also need to send the results to text (not grid)
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
October 26, 2010 at 4:35 am
either: CHAR(10)
or: CHAR(13) + CHAR(10)
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
October 26, 2010 at 4:00 am
mtillman-921105 (10/25/2010)
Where I'm at right now the current system(s) are in FoxPro. It works. I'm part of the team rewriting the HR part using .NET and SQL Server, we redesigned....
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
October 25, 2010 at 7:58 pm
Okay, it looks like I got it working.
What I did:
1. Used the VM Converter tool to copy my base VM to a new VM.
2. Used vmware-vdiskmanager to expand the disk.
3....
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
October 25, 2010 at 6:54 pm
Disk Space:
USE [DBA]
GO
/****** Object: StoredProcedure [dbo].[spGet$ServerDriveStatus] Script Date: 10/25/2010 18:51:47 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER PROCEDURE [dbo].[spGet$ServerDriveStatus]
AS
/*******************************************************************************
Get an update of the Drive Status on this server.
********************************************************************************
Parameter...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
October 25, 2010 at 4:54 pm
Derrick Smith (10/25/2010)
Alvin Ramard (10/25/2010)
The more ETL work I do, the more I hate Excel.Excel is a great product. Just keep it away from ETL.
Agreed...and the whole lack of a...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
October 25, 2010 at 4:46 pm
I have BIDS for both 2005 / 2008 installed, and working fine.
However, I do NOT have both SSMS 2005/2008 installed - I was having issues when one would patch, it...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
October 25, 2010 at 3:25 pm
Senthil T (10/25/2010)
I have this query where I build the where clause dyncamically based on user criteria selection, and return the total number of matches.
SELECT count(*) FROM tblGeneralInfo T1
INNER...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
October 25, 2010 at 3:17 pm
rmechaber (10/25/2010)
WayneS (10/24/2010)
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
October 25, 2010 at 3:12 pm
Viewing 15 posts - 2,716 through 2,730 (of 5,588 total)