Viewing 15 posts - 18,721 through 18,735 (of 26,489 total)
torpkev (10/2/2009)
i dont even see a question here..?
Title of the thread: what is net change method
October 2, 2009 at 2:52 pm
As this looks like a performance issue, please read the second article I have referenced in my signature block. Following the instruction in that article will get you the...
October 2, 2009 at 2:44 pm
Jake Shelton (10/2/2009)
*gives Lynn a big kiss for saving me a whole w/ends work...* 🙂
Don't think my wife would approve. 😉
October 2, 2009 at 1:18 pm
Sample code.
create table dbo.MyTestTable (
MyTestTableID int identity(1,1),
MyDate datetime default(dateadd(dd,datediff(dd,0,getdate()) - 1, 0)),
ADataValue int
)
;
insert into dbo.MyTestTable(ADataValue)
select 1
;
select
...
October 2, 2009 at 1:16 pm
On my dev system master.sys.all_parameters returns 6776 rows. In the context of the particular database I tested it, sys.all_parameters, returned 6841.
October 2, 2009 at 12:28 pm
SQL Server 2005 Enterprise Edition will not run on XP Pro. What you need on XP Pro is the Developers Edition. Same functionality as EE but costs about...
October 2, 2009 at 12:06 pm
krypto69 (10/2/2009)
shouldn't I be able to simply add 'GETDATE()' to the default value or binding of the table, so it inserts the current date when a record gets inserted?
Show me...
October 2, 2009 at 11:57 am
I'd have to see the code for the insert as well as the DDL for the table. I have an idea, but it is better to see this first.
October 2, 2009 at 11:36 am
And that is why I designed my Dynamic Tally Table as an In-line TVF versus the multi-statement TVF in Frank Solomons' article in SQL Server Magazine.
October 2, 2009 at 10:49 am
Here is another option:
create table dbo.MyTestTable (
SearchResultID int primary key,
ContentID int,
RankVal int
)
insert into dbo.MyTestTable
select 1,2134,22 union all
select 2,2134,108...
October 2, 2009 at 10:45 am
Yesterday at midnight:
select dateadd(dd, datediff(dd, 0, getdate()) - 1, 0)
October 2, 2009 at 10:27 am
Here is my code with a slight change to hopefully account for Previous Day.
SELECT
'OPEN' as [AREA_DESCRIPTION]
,'OPEN' as...
October 2, 2009 at 9:38 am
If you would like some helpful help give us what we have asked for. Read the first article I reference in my signature block. Follow the instructions in...
October 2, 2009 at 8:23 am
Ten thousand posts isn't that far off actually. All it takes is one hot topic to bring out a lot of posts.
October 2, 2009 at 7:47 am
I guess we've been busy. I know I am. Between work, soccer, trying to research an article for SQL Server Standard, and life in general, not much time.
October 2, 2009 at 7:01 am
Viewing 15 posts - 18,721 through 18,735 (of 26,489 total)