Viewing 15 posts - 18,721 through 18,735 (of 26,484 total)
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
Click on Control Panel. Scroll down to options, click on Forum Settings. Scroll down and you will find where you can change the number of posts per page....
October 2, 2009 at 6:59 am
Greg Edwards-268690 (10/2/2009)
You are correct.When I've done this, it's with a query that starts at the beggining of the year.
So I don't need to quallify with the year too.
Greg E
That...
October 2, 2009 at 6:48 am
Now, if you really want help, we need the DDL for the underlying tables and sample data as well. You should be able to follow the instruction in the...
October 1, 2009 at 8:07 pm
Three and four part naming conventions have been depreciated in SELECT lists. You really need to start using table aliases and two part naming conventions like this:
create view dbo.AB_CUST_ORDER_ACK...
October 1, 2009 at 8:05 pm
Viewing 15 posts - 18,721 through 18,735 (of 26,484 total)