Viewing 15 posts - 1 through 15 (of 71 total)
Dynamic SQL. Interesting solution, thank you.
January 4, 2013 at 3:12 pm
Thanks Sean. I didn't know anything about CDC so I looked at http://technet.microsoft.com/en-us/sqlserver/gg313769.aspx.
It cannot be implemented in the environment now but it was interesting. Thank you.
January 4, 2013 at 3:06 pm
Thanks for your reply. I reviewed permissions and found that SQL Server login account did not have access to the full path, I had applied proper access to the final...
February 14, 2011 at 1:04 pm
Hi MM, thank you for your reply. I did try specifying all column names in both SELECTs but I got the same error. That's why I figured I would have...
February 3, 2011 at 11:26 am
Thank you, I guess I will just have to loop through the source one at a time.
February 3, 2011 at 6:09 am
I took out the PARTITION BY name and it worked. Thank you.
January 24, 2011 at 2:12 pm
The result was every row number as 1 when I used the example code of
SELECT [RN] = Row_number() OVER (PARTITION BY NAME ORDER BY NAME)
...
January 24, 2011 at 2:05 pm
Thank you Nate. I don't know where my brain is today:-), that will do just fine.
July 22, 2010 at 12:31 pm
Thank you both. I have never done anything with XML in TSQL. With these working solutions I will be able to learn a bit more. Thank you.
July 7, 2010 at 6:19 am
Wonderful, thank you. This is the next which I apparently didn't right either. Would you tell me what I have wrong please.
create table xmlMWR (SSN varchar(9), TaxableWages varchar(20))
INSERT INTO...
June 30, 2010 at 2:58 pm
Sorry to bother, I went to BOL and found a parameter @query_result_header. That took care of the problem.
May 17, 2010 at 11:05 am
Hi Lynn, if someone someday changes the name of the job my procedure would break. Where do I find the job_id? It is less likely that someone will delete the...
December 15, 2008 at 2:20 pm
Hi Lynn, I get the following error:
Cannot add rows to sys.sql_dependencies for the stored procedure because it depends on the missing table 'dbo.sp_start_job'. The stored procedure will still be created;...
December 15, 2008 at 12:32 pm
Viewing 15 posts - 1 through 15 (of 71 total)