Viewing 15 posts - 8,626 through 8,640 (of 9,641 total)
Sounds like there is not a 64 bit IBMDASQL driver. I know that I had problems with SQL 2000 and IBMDASQL linked servers and preferred using the ODBC driver...
May 12, 2008 at 2:43 pm
Is the PC up to the latest version of IE? What version of Excel is on the person's PC?
May 12, 2008 at 2:36 pm
Have you run a TX Log backup? That should allow you to shrink the TX Log. Otherwise you should be able to shrink the DB as long as...
May 12, 2008 at 2:35 pm
In addition to GSquared's questions/comments:
Do you have to return all the columns?
I am actually surprised you are getting a clustered index seek since you are using "<>"...
May 12, 2008 at 2:32 pm
I think this is what you are looking for:
[font="Courier New"]DECLARE @sql NVARCHAR(1000)
SELECT @sql = 'create table ey_report_temp (county nvarchar(100),fname nvarchar(100), ' +
STUFF((SELECT DISTINCT ',[' + sport + '] nvarchar(10)...
May 12, 2008 at 2:22 pm
Just a little note you should be using "=" instead of "like" since you are not using any wildcards.
May 12, 2008 at 11:59 am
It depends. If you do it from the UI, then you have n calls to the DB, each within it's own transaction or the UI developer has to manually...
May 12, 2008 at 10:03 am
You could have a "Check for data step" that sends an email when there are no records returned. Or, I don't know how Oracle would work, but in SQL...
May 12, 2008 at 9:59 am
Because the query is being executed in the context of DBMail it is executed within the master database so you need to fully qualify your object names in the query,...
May 12, 2008 at 9:36 am
I'd ask for a delimited string create a udf to handle delimited strings.
May 12, 2008 at 9:07 am
Wouldn't it make sense to exclude data in your source query instead of loading it and then checking it in ssis? Select x from tble where date = today-1.
May 12, 2008 at 9:01 am
The SQL Server Service itself does not run as 'SA', SA is a SQL Server user NOT a windows user. The SQL Server Serivce is a Windows Service, like...
May 9, 2008 at 1:44 pm
My bad, remove from the ON to the GROUP BY in the first CTE and correct the other issues you have found. Just bad typing and deleting by...
May 9, 2008 at 1:41 pm
THe SQL Server Service Manager which runs in the system tray or in the services applet. Most likely it is running under local system which has no network rights...
May 9, 2008 at 1:34 pm
I don't think xp_cmdshell runs under your user rights, I think it runs under the rights of the SQL Server service. So, referencing a location using drive letter will...
May 9, 2008 at 1:24 pm
Viewing 15 posts - 8,626 through 8,640 (of 9,641 total)