Viewing 15 posts - 10,486 through 10,500 (of 13,879 total)
You could right click on the table in SSMS and select SCRIPT TABLE AS / SELECT To / New query editor window.
That will build a SELECT query for you containing...
August 28, 2012 at 7:46 am
If you're using full cache, I am not certain that the index will help (it's loading all the columns into memory anyway) - but worth a test.
The index would, however,...
August 24, 2012 at 7:34 am
The same comment applies as from your last thread. There is no guaranteed row order in SQL tables, therefore you cannot ask for 'the first occurrence' unless you define an...
August 24, 2012 at 7:24 am
ganeshkumar005 (8/24/2012)
August 24, 2012 at 7:16 am
ganeshkumar005 (8/24/2012)
D12341001
A11224001
D12342001
C13425001
B19646001
A11223001
you can see leftside values D1234 and A1122 are repeated. Now I want the result as very first numerical ID returned when I meet the alphanumeric...
August 24, 2012 at 7:01 am
Charmer (8/24/2012)
Phil Parkin (8/24/2012)
Consider changing the cache mode. See here.
i read the article Phil,
Could you please give me your idea for my condition?
My situation is , Look up or...
August 24, 2012 at 6:56 am
Consider changing the cache mode. See here.
August 24, 2012 at 3:15 am
raghuldrag (8/23/2012)
goals,date_of_commitment,kpi,
weightage,goals_review_date
--into #temp
from LIMS..GOALSDTL_Audit where accyear>='20110101' and accyear<='20120101'
and empcode=002244 order by slno
how to create procedure for dis..... while i am crearting procedure its...
August 24, 2012 at 1:45 am
Koen Verbeeck (8/23/2012)
August 24, 2012 at 1:42 am
I've used the File Watcher task in the past for situations like this. See here.
In summary, you execute your package with the FW task as the first task in the...
August 24, 2012 at 1:39 am
MSzI (8/23/2012)
IF EXISTS (SELECT 1 FROM sys.objects WHERE OBJECT_ID = OBJECT_ID(N'[ABC_SCHEMA].[ABC_TABLE]') AND [Type] IN (N'U'))
DROP TABLE [ABC_SCHEMA].[ABC_TABLE]
Because:
1. It's safer to check the schema in witch the...
August 23, 2012 at 6:45 am
What language is this that you are coding in?
August 23, 2012 at 1:59 am
Here is a possible alternative. I haven't compared it to Phil's solution.
Actually, my name is now 'Pro' 🙂
August 22, 2012 at 2:31 pm
n79799 (8/22/2012)
August 22, 2012 at 2:02 pm
You appear to have written your entire question in the subject line, leaving the body of the question blank - but you are new, so please be aware in...
August 22, 2012 at 1:58 pm
Viewing 15 posts - 10,486 through 10,500 (of 13,879 total)