Viewing 15 posts - 46 through 60 (of 141 total)
^^ Thanks. I'll start chewing through that and seeing if it fits. At first glance I have no idea what it's doing. Like I mentioned I've never had to deal...
October 6, 2010 at 4:58 pm
Craig Farrell (10/6/2010)
craig-404139 (10/6/2010)
Craig Farrell (10/6/2010)
Is it safe to assume that this field will alway end in numerics? If so, I may have a simple solution for you regarding...
October 6, 2010 at 4:25 pm
Craig Farrell (10/6/2010)
Is it safe to assume that this field will alway end in numerics? If so, I may have a simple solution for you regarding the variable front...
October 6, 2010 at 4:04 pm
So far this works using the substring statement. But has alot of hard coding. Although this solves my current problem, it doesn't help with other future needs.
select 'PPCI' +...
October 6, 2010 at 1:23 pm
That makes sense. So the SA account for the odbc connection is just for the application to connect, then all permissions are assigned by it(me)?
I wish it were as...
May 7, 2010 at 8:40 am
To add I understand that the application is setting database level security. My confusion is how that database security is tied to the sa account used in the odbc connection....
May 6, 2010 at 6:15 pm
Are you backing up your transaction logs at your DR environment?
April 30, 2010 at 11:12 am
GSquared (9/28/2009)
create table #T (
ID int identity primary key,
Dim int,
Val int);
insert into #T (Dim, Val)
select 1, 1 union all
select 1, 2 union...
September 28, 2009 at 12:03 pm
Makes sense. I just figured since the join clause is evaluated before the where clause it would be a good idea to do as much filtering as possible on it.
November 13, 2008 at 2:44 pm
Chris Harshman (10/30/2008)
select
from (select top 1 column1, column2, column3, column4
...
October 30, 2008 at 9:36 am
Something like this?
select *
from (select TOP 1 column list
from tablename
order by datecolumn DESC, timecolumn DESC) as derived table
October 30, 2008 at 9:21 am
Chris Harshman (10/30/2008)
select TOP 1 column list
from tablename
order by datecolumn DESC, timecolumn DESC
I suppose it depends on how this query...
October 30, 2008 at 9:16 am
Time is in a different column. Thats why I cant figure out how to do it.
October 30, 2008 at 8:44 am
bhovious (10/3/2008)
October 3, 2008 at 4:51 pm
bhovious (10/3/2008)
By definition, in your joins, "A" only produces a set of rows for Fall 2008, just as "A2" can only return Summer 2008. ...
October 3, 2008 at 4:35 pm
Viewing 15 posts - 46 through 60 (of 141 total)