Viewing 15 posts - 5,431 through 5,445 (of 26,490 total)
Would probably help if you posted the entire query not just the snippet above.
You should also read the first article I reference below in my signature block regarding asking for...
April 23, 2015 at 10:15 am
eedgar 45478 (4/23/2015)
Now, I've stumbled on another issue. Since i'm including this the last step of the job here. I don't think...
April 23, 2015 at 10:12 am
Or you could use the MS scalar function in the MSDB database:
select job_id, msdb.dbo.agent_datetime(run_date,run_time) from msdb.dbo.sysjobhistory;
April 23, 2015 at 10:09 am
Sean Lange (4/23/2015)
Lynn Pettis (4/23/2015)
Finally made the dive into using TVPs. Pretty neat stuff actually.
They are pretty slick. I was working on an article to explain how to use...
April 23, 2015 at 9:16 am
Interesting. I get notifications on old threads when new posts are added but I'm not getting any on the new threads I have posted on. Anyone else having...
April 23, 2015 at 8:37 am
ScottPletcher (4/23/2015)
Lynn Pettis (4/23/2015)
CELKO (4/22/2015)
Why are you changing obvious integer data types to character data types?
Please read any book on basic data modelling and look at the chapters on...
April 23, 2015 at 8:32 am
Loner (4/23/2015)
I need to import a fixed length file but each row is different length. I don't know how to define it in SSIS flat file connection.For example
A001xxxxxx
A002xxxxxxxxxxxxxxxxxxxxxxxx
A003xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
ENDxxxxx
Thanks
That isn't...
April 23, 2015 at 8:28 am
CELKO (4/22/2015)
Why are you changing obvious integer data types to character data types?
Please read any book on basic data modelling and look at the chapters on scales and measurements....
April 23, 2015 at 8:21 am
Finally made the dive into using TVPs. Pretty neat stuff actually.
April 23, 2015 at 8:04 am
jre1229 (4/22/2015)
April 22, 2015 at 10:15 am
Much simpler way to do this without using windowing functions:
create table #Users (
UserID int not null,
UserName varchar(10) not null
);
insert into #Users
values (1,'Robert');
create...
April 22, 2015 at 9:22 am
Jeffery Williams (4/22/2015)
April 22, 2015 at 8:59 am
CELKO (4/21/2015)
I am getting error when I am trying to create table on runtime
Please, please read any book on data modeling. A schema is supposed to be a model...
April 21, 2015 at 4:37 pm
CELKO (4/21/2015)
No, you need help with DDL. You have no idea how to make a valid data model A table has...
April 21, 2015 at 4:28 pm
You don't need a while loop or a nested while loop to accomplish the task you are attempting to complete. Alan.B has shown you a much better way to...
April 21, 2015 at 12:32 pm
Viewing 15 posts - 5,431 through 5,445 (of 26,490 total)