Viewing 15 posts - 226 through 240 (of 583 total)
Thanks, everyone.
From what I understand the derived table is more effiecient. It took me a while to understand them, though. The instructor I had when working on my degree taught us...
December 19, 2005 at 8:28 am
Even though there are tons of plot holes, I thought "Minority Report" had some really cool technology. It made me think a lot about how fast everything changes and how we...
December 2, 2005 at 8:13 am
Books Online says that the 'default language' setting is for new accounts. To change an existing session, you can use the command SET LANGUAGE before running the insert.
November 23, 2005 at 12:49 pm
#3 sounds very interesting. I love creating tools like scripts to make my job easier and it would be cool to create some tools that could be sold to other...
November 18, 2005 at 8:49 am
There are two places in Access that usually cause a form to open automatically: the AutoExec macro and the "Display Form/Page" property found under Tools -> StartUp. Usually the Shift...
November 13, 2005 at 12:11 pm
Sounds like you are doing it correctly. I was able to transfer just stored procs and functions to a different database with the settings you mentioned.
While in the DTS designer, save...
November 13, 2005 at 11:52 am
From 15seconds.com http://www.15seconds.com/faq/Data%20Access/767.htm
1: Store as a Float.
2: Store as a canonical string, i.e. YYYYMMDDHHNNSSmmm (separators optional). Perform explicit conversion to an from the database.
3: Store Year, Month, Day,...
November 12, 2005 at 11:22 pm
I will definately add that to our maintenance.
Rebooting the two servers fixed the SQL Agent problems. I also had different issues with SQL Mail on another server and then a...
November 3, 2005 at 8:20 am
Update: make that sp_help_job not sp_helpjob.
I restarted SQL Server Agent on second server and now it is taking a long time to refresh and run sp_help_job but now can get...
November 2, 2005 at 11:29 am
Because the count function returns integers, the answer to math using integers is also an integer. Run this script to see the difference:
declare @int1 integer
declare @int2 integer
select @int1 = 10,...
October 30, 2005 at 8:40 pm
In Enterprise Manager, Expand "Support Services". There you will find a way to turn on the Full-Text service.
October 16, 2005 at 8:32 pm
It doesn't hurt to delimit, but I think it would be a best practice to name the objects correctly to begin with. You can use underscores instead of spaces.
October 16, 2005 at 8:28 pm
OK, use my explanation of convert to store the date with the time zeroed out in your insert or update statement.
October 16, 2005 at 8:23 pm
I don't think you need nested queries at all. Please provide a script that creates all of the tables involved and inserts some sample data. I can't tell how to join...
October 16, 2005 at 1:46 pm
The order of the items in the select list doesn't matter at all. DISTINCT applies to the row, not to the column when you do this (the statments will return...
October 16, 2005 at 1:41 pm
Viewing 15 posts - 226 through 240 (of 583 total)