Viewing 15 posts - 136 through 150 (of 299 total)
Hi,
Ok, but this is not the best strategy. It would be a better idea to call Adobe Acrobat from web application NOT SQL Server. Your application should be...
March 7, 2008 at 8:18 am
Hi,
Looks like you have x64 version of product?
Thanks,
Phillip Cox
MCITP - DBAdmin
March 7, 2008 at 8:02 am
Hi,
Why are you trying to open Adobe Acrobat from SQL Server?
Thanks,
Phillip Cox
MCITP - DBAdmin
March 7, 2008 at 7:58 am
Hi,
What service pack does your Windows OS have installed? What kind of hardware are you using?
What type of shared storage are you using (e..g direct attached or SAN)? ...
March 7, 2008 at 7:55 am
Hi,
As long as the column on the table has the identity property turned on, this will autogenerate a value for each row imported.
Thanks,
Phillip Cox
MCITP - DBAdmin
March 7, 2008 at 7:48 am
Hi Carl,
Absolute pleasure.
Thanks,
Phillip Cox
MCITP - DBAdmin
March 7, 2008 at 4:59 am
Hi,
No, as it needs to figure best way to get to the data? You can "guide" using hints, but other than that, you cannot tell it not to create...
March 7, 2008 at 4:53 am
Hi,
You should be fine, as logic is based on physical processor.
Here's some reference info:
Thanks,
Phillip Cox
MCITP - DBAdmin
March 7, 2008 at 4:48 am
Hey,
It's a master database query.
Thanks,
Phillip Cox
MCITP - DBAdmin
March 7, 2008 at 4:40 am
Hey,
Have you tried adding the covering index on:
COBDATE, ACCOUNT?
Thanks,
Phillip Cox
MCITP - DBAdmin
March 7, 2008 at 4:35 am
Hi,
have you enabled remote connections via the Surface Area Configuration tool?
Thanks,
Phillip Cox
MCITP - DBAdmin
March 7, 2008 at 4:14 am
Hi,
You'll need to enable the Agent XP's by using following:
sp_configure 'show advanced options','1'
RECONFIGURE
go
sp_configure 'Agent XPs','1'
RECONFIGURE
go
This will enable Agent XP's and SQL Server Agent should start.
Thanks,
Phillip Cox
MCITP - DBAdmin
March 7, 2008 at 4:09 am
Hi xgoulay,
Umm..they execution plan is exactly the same? Do you have an index on the CODOB column on each table?
Thanks,
Phillip Cox
MCITP - DBAdmin
March 6, 2008 at 12:23 pm
Hi,
Try this and let me know results:
execute sp_executesql
N'SELECT COBDate,Account,SUM(Amount) AS Amount FROM uv_rules WHERE COBDate = @COBDate GROUP BY COBDate,Account',
N'@COBDate smalldatetime',
@COBDate = '20080229'
Thanks,
Phillip Cox
MCITP - DBAdmin
March 6, 2008 at 11:57 am
Hi,
You can re-write the query using sp_executesql, as using this strategy will ensure sp_executesql gets an execution plan, which will be compile with a value for the varible and hit...
March 6, 2008 at 11:30 am
Viewing 15 posts - 136 through 150 (of 299 total)