Viewing 15 posts - 1,471 through 1,485 (of 2,038 total)
Hi
Little explanation:
An UNIQUE INDEX (independent if CLUSTERED or NONCLUSTERED for the moment) is a unique key.
Simplified a table is like a list of objects. You are able to create indexes...
April 9, 2009 at 2:08 pm
Hi Bob!
Thanks a lot for the English education! 🙂
Greets
Flo
April 9, 2009 at 12:33 pm
Maybe it's a problem with your custom OLEDB provider "Advantage OLE DB Provider".
Did you try the Microsoft provider:
EXECUTE sp_addlinkedserver 'dbf', '', 'MSDASQL', 'dBase Files', Null, Null, 'C:\dbf Folder'
Hope this...
April 9, 2009 at 12:27 pm
dwierenga (4/9/2009)
A simple
ORDER BY len(column), column usually works for me...
April 9, 2009 at 11:49 am
Hi sward
The error message
Your code:
ALTER procedure [dbo].[move_ebs_learner]
(
--- wce_ilr is the source table to be broken down in to the following destination tables.
DECLARE @wce_ilr TABLE (
The error message...
April 9, 2009 at 11:36 am
If you want to provide a table (list) to a procedure, this will be a new feature in SSE2k8 but is not available in SSE2k5.
April 9, 2009 at 10:33 am
Further information here:
http://www.sqlservercentral.com/Forums/Topic693851-149-1.aspx
April 9, 2009 at 10:19 am
Please no cross posts... All further posts please here:
http://www.sqlservercentral.com/Forums/Topic693903-1291-1.aspx
April 9, 2009 at 10:16 am
Search this site for "auditing triggers". Here you can find some great articles by GSquared:
http://www.sqlservercentral.com/Authors/Articles/GSquared/475322/
Greets
Flo
April 9, 2009 at 9:47 am
Hi
Use the Tally table to handle this:
DECLARE @t TABLE (Reference VARCHAR(30), PaymentDate DATETIME, Amount MONEY)
INSERT INTO @t (
Reference,
...
April 9, 2009 at 9:34 am
Gift Peddie (4/9/2009)
Sorry, I misunderstood you. I thought the current time-zone will be provided from client side not from server. If the client is a web application the time-zone can...
April 9, 2009 at 8:52 am
Gift Peddie (4/9/2009)
I cannot attest, but I'm quiet sure that every programming language has any method to get the current time-zone.
Timezone is based on politics so there was none in...
April 9, 2009 at 8:14 am
Jeff Moden (4/9/2009)
April 9, 2009 at 8:01 am
Chris Morris (4/9/2009)
You're totally right Flo, it's overkill, all you need is patindex. It was just for fun.
Always a good reason for a post! 😉
Try this:
ISNULL(NULLIF(PATINDEX('%[^A-Z]%', NameTrim),0), LEN(NameTrim))
which means: if...
April 9, 2009 at 7:51 am
Viewing 15 posts - 1,471 through 1,485 (of 2,038 total)