Viewing 15 posts - 31 through 45 (of 53 total)
I have a lot of references to it as a linked server in different stored procedures. I guess the migration/moving might be the way to go,
thanks,
Petr
September 10, 2014 at 11:46 am
Ooops, sorry, I did not scroll all the way down. Once I created the function, everything works awesome.
thanks,
Petr
August 18, 2014 at 7:39 am
OK, this looks great. I see the logic. What is the code behind dbo.DelimitedSplit8k?
thanks,
Petr
August 18, 2014 at 7:30 am
OK< I guess I can answer my own questions here :). I have to separate the declare and set into two statements.
Petr
August 7, 2014 at 10:56 am
How would I adjust the code so it works with SQL 2005 database?
thanks for all you help,
Petr
August 7, 2014 at 10:53 am
the database is 2005 version that is why I was getting that error,
PEtr
August 7, 2014 at 10:47 am
I know, I am definitely taking everything that is in the box. I even attempted to replace the ' marks.
not sure what is going on here,
Petr
August 7, 2014 at 9:19 am
When I execute the code, I get the following set of errors:
Msg 139, Level 15, State 1, Line 0
Cannot assign a default value to a local variable.
Msg 139, Level 15,...
August 7, 2014 at 9:13 am
This will be just a one time import from excel. I am not even going to set up a custom SSIS job. I will just use the regular SSMS feature...
August 7, 2014 at 8:49 am
Got it and I am sorry. I did not realize that.
The data comes over from a flat file import so I can convert the nvarchar to datetime. That does not...
July 16, 2014 at 11:33 am
here is the test data for projections:
USE [International_Forecast]
GO
INSERT INTO [dbo].[Projections]
([Brand]
...
July 16, 2014 at 11:19 am
Hi there,
appreciate the input so far. The reason why that particular column can be null is because the date might not be available at the time. The open date is...
July 16, 2014 at 10:48 am
DDL for forecast date (sales data)
USE [International_Forecast]
GO
/****** Object: Table [dbo].[forecast_data] Script Date: 7/16/2014 11:12:36 AM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[forecast_data](
[recID] [bigint] IDENTITY(1,1) NOT NULL,
[FileID]...
July 16, 2014 at 9:15 am
You sir! are a a lifesaver. I see how this is a much better way of doing this,
thanks for pointing me in right direction,
Petr
July 2, 2014 at 12:35 pm
Viewing 15 posts - 31 through 45 (of 53 total)