Viewing 15 posts - 76 through 90 (of 583 total)
In Access you can hide objects like forms. So, if your users are trying to open the form from the "Forms" section and can't see it, have them go to...
Aunt Kathi Data Platform MVP
Author of Expert T-SQL Window Functions
Simple-Talk Editor
April 23, 2007 at 11:19 am
You don't have to worry about date "format". A date is not really stored the way it looks to the user anyway. The main problem you will have as far...
Aunt Kathi Data Platform MVP
Author of Expert T-SQL Window Functions
Simple-Talk Editor
April 23, 2007 at 11:11 am
I work for a smart company, Bryan Cave LLP. I think Bryan Cave is smart because of the culture and how it welcomes diversity. People are respected for their work and...
Aunt Kathi Data Platform MVP
Author of Expert T-SQL Window Functions
Simple-Talk Editor
April 21, 2007 at 9:48 am
Use the datediff function.
select datediff(d,dateStart,dateEnd)
Aunt Kathi Data Platform MVP
Author of Expert T-SQL Window Functions
Simple-Talk Editor
April 5, 2007 at 1:40 pm
You can give a Windows authentication login access to the SQL Server through a group. So, let's say you have a Windows group called App_Users. You add the Windows accounts...
Aunt Kathi Data Platform MVP
Author of Expert T-SQL Window Functions
Simple-Talk Editor
April 5, 2007 at 12:21 pm
Try this for SQL Server 2000:
select name, case when isntgroup = 1 then 'Group' when isntuser = 1 then 'Windows Auth' when isntname = 0 then 'SQL Login' end as...
Aunt Kathi Data Platform MVP
Author of Expert T-SQL Window Functions
Simple-Talk Editor
April 5, 2007 at 11:16 am
I vote for Steve's solution. You should not use a cursor for this.
Aunt Kathi Data Platform MVP
Author of Expert T-SQL Window Functions
Simple-Talk Editor
April 5, 2007 at 8:49 am
Take a look at this thread to see some possible causes and solutions:
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=5&messageid=209497
Aunt Kathi Data Platform MVP
Author of Expert T-SQL Window Functions
Simple-Talk Editor
April 5, 2007 at 8:47 am
There is not a function to do it. A loop that adds one day at a time to the start date is an easy way to do it.
Aunt Kathi Data Platform MVP
Author of Expert T-SQL Window Functions
Simple-Talk Editor
April 5, 2007 at 8:43 am
Even some simple things in presentations like not using SA would help. That is easy to avoid and doesn't complicate the demo.
Aunt Kathi Data Platform MVP
Author of Expert T-SQL Window Functions
Simple-Talk Editor
April 4, 2007 at 7:11 am
Maybe I am stating the obvious here, but what does the @v_query do? Is it modifying the table structure of the tables that are part of the cursor?
Aunt Kathi Data Platform MVP
Author of Expert T-SQL Window Functions
Simple-Talk Editor
April 3, 2007 at 9:01 am
Steve, I'm confused on how you loaded the data into SQL Server in the first place using DTS. How did it know that the three lines were supposed to be...
Aunt Kathi Data Platform MVP
Author of Expert T-SQL Window Functions
Simple-Talk Editor
February 16, 2007 at 3:50 pm
It is easy to get the report definition out. Just go to the Report Services web page and navigate to the report you need. Switch to the properties tab and...
Aunt Kathi Data Platform MVP
Author of Expert T-SQL Window Functions
Simple-Talk Editor
February 16, 2007 at 11:11 am
My daughter, a chemist, is so good with the software she uses at work that I keep telling her she is going to get recruited by their IT dept. I...
Aunt Kathi Data Platform MVP
Author of Expert T-SQL Window Functions
Simple-Talk Editor
February 14, 2007 at 8:24 am
Just for the record, I consider myself a geek and am proud of it. Who really knows what leads someone to be a programmer or a DBA or a pet...
Aunt Kathi Data Platform MVP
Author of Expert T-SQL Window Functions
Simple-Talk Editor
February 13, 2007 at 7:51 am
Viewing 15 posts - 76 through 90 (of 583 total)