Viewing 15 posts - 1,321 through 1,335 (of 2,647 total)
While you are working on getting us proper DDL for the 2 tables, can you also clarify your SQL statement?
cast(cb as varchar(12) = b) is not syntactically correct...
March 27, 2012 at 10:23 am
You use ROW_NUMBER(...) AS seqnum. Then you join and filter the CTE using WHERE seqnumber = 0. What a waste! Just find the 1 row you want from the...
March 27, 2012 at 10:18 am
1. Why are you using that case statement in your CTE? Seems useless at that point.
2. Why are you using the row_number in your CTE? It doesn't look to...
March 27, 2012 at 10:12 am
What is your query? Please post DDL and DML.
March 27, 2012 at 10:04 am
S_Kumar_S (3/27/2012)
I plan to upgrade a trail version of VS2008 on one of live sql server(2008R2). trial version has already expired and hence I can't use SSIS on this machine....
March 27, 2012 at 9:57 am
S_Kumar_S (3/27/2012)
So...
March 27, 2012 at 9:51 am
Charmer (3/27/2012)
I am having kinda same problem...
I have more than 7 million records in a table.. i was wondering to see how much time to execute and :ermm: it...
March 27, 2012 at 9:30 am
The first thing to do is find out what else is accessing this database. Ex. The OP said it was old an unused, but clearly something was accessing...
March 27, 2012 at 9:28 am
So you mean to say if I want to modify the maintenance plan from any client, then SSIS should be installed on all clients or do you mean that it...
March 27, 2012 at 9:12 am
jackimo (3/27/2012)
Thanks for mentioning Partitioning. I've never actually implemented it before. I'm now doing some research and reading. Here is my plan; just testing now....:-)
I have...
March 27, 2012 at 8:58 am
Modifying a maintenance plan requires SSIS to be installed, I believe. Do you have that installed? I don't really think there is a difference between the SSMS versions for express...
March 27, 2012 at 8:00 am
Can you please look at your post? You keep placing your text within IFCode Shortcuts... Why? Put only your SQL in the [ code = "sql" ][ /code ]...
March 26, 2012 at 2:34 pm
CREATE FUNCTION dbo.DelimitedSplit8K
-- Define I/O parameters
(@pString VARCHAR(8000), @pDelimiter CHAR(1))
RETURNS TABLE WITH SCHEMABINDING AS
RETURN
-- "Inline" CTE Driven "Tally Table" produces values from...
March 26, 2012 at 2:23 pm
I have to ask... Why are you doing all of this conversion? Did you develop this app or dis someone else? Can you change the way data is stored?...
March 26, 2012 at 11:52 am
Standard and higher will provide you with most replication. For Oracle or Peer to Peer, you must have Enterprise ed.
March 26, 2012 at 11:06 am
Viewing 15 posts - 1,321 through 1,335 (of 2,647 total)