Viewing 15 posts - 16 through 30 (of 175 total)
Is the table design the documents associated with a person and are you then trying to determine if the requirements are met through a SELECT statement?
OR
Is the table...
August 25, 2010 at 2:42 pm
Can you keep your status table local? Or additionally keep a local status table? How can you write to your remote status table if you are having network problems? TRY/CATCH...
August 24, 2010 at 9:05 am
Having multiple tables (COACH_TABLE, GM_TABLE,ect.) for contacts indicates a problem.
Preferably you have one table to track all your humanoid data points.
Contacts:
[Period] [datetime] NOT NULL
[LNAME] [nvarchar] (50) COLLATE SQL_Latin1_General_CP1_CI_AS NULL ,
[FNAME]...
August 23, 2010 at 5:09 pm
Depends on the version of excel you intend to open the file in.
http://msdn.microsoft.com/en-us/library/aa730921(office.12).aspx#Office2007excelPerf_BigGridIncreasedLimitsExcel
August 12, 2010 at 12:28 pm
I don't see anything wrong with the code. Switch the cc recipients and see what happens. Also check the sysmail tables in msdb.
August 6, 2010 at 10:04 am
bkana (8/6/2010)
Also, if your not supposed to do formatting in SQL, are there other methods to achieve what I need? .
SQL is generally for data retrieval not display. Formatting should...
August 6, 2010 at 9:54 am
Yes linked servers existed in 2000.
http://www.extremeexperts.com/sql/yukon/ArchivingData.aspx
http://www.mssqltips.com/tip.asp?tip=1121
http://msdn.microsoft.com/en-us/library/ms345146(SQL.90).aspx
July 29, 2010 at 12:24 pm
You would use linked servers.
http://msdn.microsoft.com/en-us/library/ms188279(SQL.90).aspx
July 29, 2010 at 12:06 pm
Browsers can't access a database directly to the best of my knowledge. Browsers access webservers which can be configured/developed to interact with databases.
July 29, 2010 at 12:01 pm
Scenario:
I have data from the past 10 years. Performance is slow. I want to "archive" data up until the past 6 months. I have a stored proc that generates data...
July 29, 2010 at 9:46 am
Can you use a subquery?
SELECT
Field1, Field2 FROM
(
Your query here with your groupings
) AS MyAlias
ORDER BY whatever you want
This is of course air code and not guaranteed to work...
July 26, 2010 at 3:55 pm
scott.pletcher (7/23/2010)
This should allow you to get rid of the UNION (which should be...
July 23, 2010 at 2:03 pm
Using TOP 1 also resolves my issue. Thanks again.
July 23, 2010 at 9:51 am
I ended up inserting my 'exists' query into a temporary table. I then perform my actual existence check on this temporary table. Execution is 2-3 seconds. This works...not sure about...
July 23, 2010 at 9:11 am
Viewing 15 posts - 16 through 30 (of 175 total)