Viewing 13 posts - 1,396 through 1,409 (of 1,409 total)
I think you mean Archive Tables.
These are tables where you can transfer data to that is not immidiately required.
Say you have a transaction table where you insert several thousands of...
April 22, 2008 at 4:31 am
Ahmad Osama (4/17/2008)
HanShi (4/17/2008)
You can also use the Bitwise NOT function (~) by using a query like:UPDATE inventory SET iLease = ~ iLease
It works:)
What if I have varchar column...
April 17, 2008 at 1:43 am
You can also use the Bitwise NOT function (~) by using a query like:
UPDATE inventory SET iLease = ~ iLease
Regards,
Hans
April 17, 2008 at 1:30 am
Besides the different tools available, you can also set alerts on various things you want to monitor.
You can get an alert when a SQL-job fails, when space drops below a...
April 16, 2008 at 6:49 am
It looks like you haven't defined an Operator yet. Look in SSMS under 'SQL Server Agent' and 'Operators'. You probably have to use a group mail to notify multiple persons...
April 14, 2008 at 6:12 am
Rafal S. created a script to get the job done.
See this link: http://www.sqlservercentral.com/scripts/Miscellaneous/62115/
April 14, 2008 at 3:36 am
Sorry, my mistake...
In SSMS you open the query. There you have to right click the query and then choose "analyse query in DTA"
April 4, 2008 at 6:25 am
Hi Bob,
Assuming there will be only one value in eacht column (per task_ID) you can use it with the GROUP BY clause.
The query will be like this:
SELECT TASK_ID, MAX(APPL_ID), MAX(QTIME),...
April 2, 2008 at 5:26 am
Hi,
You have to open the query in Management Server. From there you can select option "Database Engine Tuning Advisor" from the menu "Tools". This will pars the query to the...
April 2, 2008 at 3:37 am
Hi,
I quess you should use the UNION for this.
SELECT Column1, Column2 FROM Table1 WHERE Column1='cat' OR Column2='cat'
UNION ALL
SELECT Column1, Column2 FROM Table2 WHERE Column1='cat' OR Column2='cat'
UNION ALL
SELECT Column1, Column2 FROM...
March 28, 2008 at 4:08 am
Hi again,
On this website http://msdn2.microsoft.com/en-us/library/ms130828.aspx is a better explanation on what to use (and when to use it).
March 28, 2008 at 3:46 am
Hi,
SQLOLEDB is the best way to go.
On the MSDN website http://msdn2.microsoft.com/en-us/library/ms130978.aspx Microsoft states the following:
"If you are developing a new application it is recommended that you consider using ADO.NET and...
March 28, 2008 at 3:33 am
Viewing 13 posts - 1,396 through 1,409 (of 1,409 total)