Viewing 15 posts - 61 through 75 (of 124 total)
Just to make sure I understood the Intersect/Except operators, I tried a variation of the examples from BOL. I put debug(s) around it all just to run various tests without...
May 26, 2010 at 10:08 am
I found a bug listing on Microsoft Connect (ID 515132) similar to the issue I was experiencing. I put my comments in the bug and voted on it. Anyone experiencing...
May 6, 2010 at 10:08 am
No updates. When the problem first occurred there were no postings on the subject related to SQL Server 2008... I am beginning to see some now, but no answers on...
May 6, 2010 at 9:52 am
This is an older post (I was researching a similar issue). Check the following URL:
March 30, 2010 at 5:50 am
Ok... found a temporary solution to the problem, but still not understanding why it is happening.... played with firewall settings (Windows Server 2008 has multiple firewalls).
Used the ipaddress,port (for...
March 25, 2010 at 1:16 pm
Just to see what would happen, I did try and use a remote desktop connection to the server and it worked fine! Dealing with a few other issues now too......
March 25, 2010 at 10:39 am
I am just completing a migration from SQL 2005/Win2003 to SQL 2008/Win2008. Here are some links to review:
1) Review this forum entry: http://www.sqlservercentral.com/Forums/Topic843135-1550-1.aspx
2) Here is a good...
March 25, 2010 at 6:14 am
Charles,
Thanks for the update. I was just getting ready to post this myself... I just figured that technique out this week when I had some 250-row csv files I...
February 12, 2010 at 8:24 am
Unfortunately no, never found a solution for this. I did have to manually add each column name (and datatype) to the flat file connector.
One word of caution (just found...
February 5, 2010 at 1:51 pm
Here is a bit more of an update....
First, you can get errors in SSIS that would not fail in SQL Server (in this case, when Ignore_dups is set on)........
January 15, 2010 at 2:09 pm
Not that I am trying to take over someone's elses post, but here was the example query I was using:
SELECT CONVERT(varchar,Invoicedate,101) as PostedDate ----- Group by date as there...
January 11, 2010 at 7:51 am
Unfortunately I do have to do all of those contortions as I am using CONVERT(varchar,InvoiceDate,101) in the SELECT statement and the GROUP BY. If I just try and use just...
January 11, 2010 at 7:42 am
I know that I had a similar problem with some of my reports... I would convert the date to a varchar to eliminate the time component, i.e., CONVERT(varchar,InvoiceDate,101) as InvoiceDate...
January 11, 2010 at 6:32 am
For anyone else researching the "sp_MS_marksystemobject", I found the following excerpt from Kalen Dalaney:
http://sqlblog.com/blogs/kalen_delaney/archive/2008/08/10/geek-city-system-objects.aspx
Kalen says:
...The objectproperty function has an argument called 'IsSystemTable', that will show you...
December 15, 2009 at 12:38 pm
Thanks! 🙂
I was hoping the solution might be something simple. Here we go:
EXEC sp_msforeachDB 'USE ?; DECLARE @Name VARCHAR(30), @NewName VARCHAR(30), @Statement varchar(1000);
SET @Name = ''Smith''; SET...
October 21, 2009 at 7:43 am
Viewing 15 posts - 61 through 75 (of 124 total)