Viewing 15 posts - 136 through 150 (of 250 total)
Sorry, I should have been more clear. The query is inserting into the TempEmail table so I can join back to the table with the conflict to see which...
October 6, 2010 at 10:19 am
Are you having difficulty with this, or just checking to see if it is possible?
The nature of CSV files is that each column is output for each row at exactly...
October 1, 2010 at 1:56 pm
FYI, this seemed a simple enough solution. However, with the lack of information out there I have abandoned this method and am doing the export via SSRS. Only...
October 1, 2010 at 11:48 am
I made a few changes to make this easier to follow. It looks like it is working fine to me.
declare @fileinfo table ([FileName] varchar(10),[RowCount] int)
declare @file table ([FileName] varchar(10),[RowCount]...
September 29, 2010 at 1:23 pm
Is the INSERT statement attempted, but fails with an error? If so, would you please include the error?
September 29, 2010 at 12:16 pm
You may want to try eliminating the second condition and making it a catch-all ELSE.
IF EXISTS (SELECT * FROM dbo.fileinfo U INNER JOIN dbo.[File] A ON U.filename =A.filename )
BEGIN
...
September 29, 2010 at 11:52 am
SQL Server 2008 R2 allows unlimited virtualization.
You should be fine.
http://www.microsoft.com/sqlserver/2008/en/us/enterprise.aspx
September 23, 2010 at 12:50 pm
Funny, I did remove it at one time but had other issues so put it back.
Removed it (along with a few others further down) and did some additional cleanup and...
September 21, 2010 at 3:32 pm
It sounds like you need to run diagnostics on your new memory.
September 21, 2010 at 3:25 pm
In SQL 2008 these are now referred to as "Schemas". Schemas aid in categorizing database objects and are used instead of owners to address the objects.
Owners still exist.
The proc...
September 20, 2010 at 3:54 pm
Could be. But the link doesn't say that specifically so it is hard to tell. MS does silly things like that sometimes without saying anything.
http://www.microsoft.com/sqlserver/2008/en/us/editions-compare.aspx
September 20, 2010 at 3:49 pm
The database size is now listed as 10GB making the Express edition practical for more users.
Some of the older Express editions limited connections to 25 (At least that is what...
September 20, 2010 at 3:24 pm
A quick method is the right-click the stored procedure and click View Dependencies. It will show you the information you are looking for.
September 16, 2010 at 3:01 pm
Really, the easiest way is to right-click the database, select Taks, then click Generate SQL Scripts.
Make sure and go to the Set Scripting Options page and use Advanced to customize...
September 10, 2010 at 11:21 am
You can change the server and database using the Reporting Services Configuration Manager.
I don't believe you will have any issues with that, but cannot say for sure.
Why not configure the...
September 10, 2010 at 10:58 am
Viewing 15 posts - 136 through 150 (of 250 total)