Viewing 15 posts - 91 through 105 (of 196 total)
If you are referring to trace flags, then try this (more info in BOL)
DBCC TRACESTATUS(-1)
February 10, 2010 at 2:56 am
OK - I didn't get that from your earlier specifications.
Try this
SELECT TYPE = CASE WHEN TERM_ID LIKE '040%' THEN 'A GROUP'
...
February 10, 2010 at 1:52 am
Moorthy,
Can you try this query?
SELECT TYPE = CASE WHEN TERM_ID LIKE '040%' THEN 'A GROUP'
...
February 10, 2010 at 12:55 am
What version of SQL Server are you using? I strongly suggest you upgrade to SQL2005 or 2008 and use SSIS instead of DTS.
February 10, 2010 at 12:27 am
Please check BOL and Google before asking.
From BOL:
User-defined functions can be nested; that is, one user-defined function can call another. The nesting level is incremented when the called function starts...
February 10, 2010 at 12:24 am
Here's another way to write the query, but compared to what you have it is only marginally better on the sample set you provided (49% to 51% 🙂
SELECT [t1].
...
February 9, 2010 at 5:09 am
SELECT [t1].[Id]
,[t1].[Name]
,[t1].[Designation]
,[t1].[Address]
...
February 9, 2010 at 3:15 am
Use an outer join with a table that contains the dates you require like in my example.
February 9, 2010 at 2:52 am
February 9, 2010 at 1:11 am
Please provide create table statements, sample data and an example of the output you would like to see for it.
February 9, 2010 at 1:02 am
You'll first need to generate all the necessary dates. You can either to this dynamically (e.g. using a CTE - see BOL) or use a calendar table. For the solution...
February 9, 2010 at 12:56 am
Not sure why you think you need a WHILE. Try this:
SELECT [t1].[Id] AS [Id_Table1]
,[t1].[Name]
,[t1].[Designation]
...
February 9, 2010 at 12:32 am
Open the Object Explorer Details window (F7) and click on Security - Logins in the Object Explorer pane.
February 9, 2010 at 12:24 am
Dave,
I have the impression that in your first step (FST Rename Source File) you are trying to copy the file onto itself which raises the error.
This seems to happen because...
February 8, 2010 at 7:03 am
Did you try correcting the metadata using the Advanced Editor on the source?
February 8, 2010 at 6:03 am
Viewing 15 posts - 91 through 105 (of 196 total)