Viewing 15 posts - 2,971 through 2,985 (of 5,588 total)
You cannot perform an in-place upgrade from 32-bit to 64-bit.
If you already have a 64-bit OS with the 32-bit SQL, then you can install 64-bit sql on the same cluster....
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
October 7, 2010 at 10:00 pm
Use the CONVERT function, with style 101, to convert the datetime to mm/dd/yyyy format. Grab just the first 5 characters, and then do your comparison.
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
October 7, 2010 at 9:54 pm
Craig,
I'm having problems loading this much data into a sample table. Can I get you to export the data into a new table in a new database? Detach the database,...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
October 7, 2010 at 6:03 pm
...In your attachment are several rows with "NULL" instead of any data.
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
October 7, 2010 at 5:05 pm
DECLARE @test-2 TABLE (
RowID INT IDENTITY PRIMARY KEY CLUSTERED,
Name varchar(10),
Gender char(1),
Age tinyint,
[Group] char(1));
INSERT INTO @test-2
SELECT 'Jim', 'M',...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
October 7, 2010 at 4:45 pm
Please be sure to come back and let us know how it worked out for you.
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
October 7, 2010 at 3:28 pm
Alvin,
Why use a Script Task to build another variable when you can do it from the expression property of the variable?
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
October 7, 2010 at 3:24 pm
Soulfly73 (10/7/2010)
Thank you for your reply.
I indeed can get the supplierId from the filename, but I cant figure it out to use it as a variable and insert it...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
October 7, 2010 at 2:56 pm
sbrochu (10/7/2010)
T0.[Name] AS 'ComputerName',
--count( T0.[Name]) as 'Execution Count',
T1.[Domain] AS 'Domain',
T1.[Last Logon User] AS 'Last Logon User',
T2.[Start Date] AS 'Start Date',
T2.[File Name] AS 'File Name',
T2.[File...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
October 7, 2010 at 2:37 pm
sbrochu (10/7/2010)
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
October 7, 2010 at 2:35 pm
Are you saying that the filename contains information to be able to determine the SupplierID? If so, you can have this go to a (package level) variable, and use it...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
October 7, 2010 at 2:31 pm
Assuming that the parameters are going to be the variables that you declared and initialized, then this looks good. Just ensure that you remove the declaring/setting of the variables!
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
October 7, 2010 at 11:44 am
You know, the people that help out here are all un-paid volunteers, so please HELP US HELP YOU. Providing the DDL scripts (CREATE TABLE, CREATE INDEX, etc.) for the tables...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
October 7, 2010 at 11:41 am
craig-404139 (10/7/2010)
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
October 7, 2010 at 11:36 am
craig-404139 (10/7/2010)
@GroupNo = GroupNo = case....
@Prefix = Prefix = LEFT.....
Looks like you are setting the...
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
October 7, 2010 at 11:18 am
Viewing 15 posts - 2,971 through 2,985 (of 5,588 total)