Viewing 15 posts - 2,221 through 2,235 (of 2,267 total)
you can, but you need to have specific access to the command
xp_cmdshell
EXEC xp_cmdshell 'Dir C:\*.*'
April 23, 2008 at 2:49 am
haven't built a horse-racing one, but did build a rugby-league one a few years ago. didnt help to much with the betting though.
SSIS (Integration Studio) will be...
April 22, 2008 at 9:47 am
as the others have said look at the execution plan and time.
Other general ideas are;
Avoid costly queries in your procedure, avoid cursors and try and use a set...
April 22, 2008 at 7:41 am
it looks like you are grouping the same field that you are summing, so it will never sum correctly
post your exact output and it will be easier to diagnose.
April 22, 2008 at 6:50 am
Okay it sounds like you have installed the server tools locally, you need to run the install again and select management studio client tools to install on your client...
April 22, 2008 at 4:03 am
SSMS = sql server management studio, it is the client side for sql server.
sql server should be run off a server , though you can run it...
April 22, 2008 at 3:03 am
unless you have SQL server avilaible to you either locally or over a network on a server, you will not be able to use it in VS.net.
the basic functionalitly is...
April 22, 2008 at 2:16 am
You will need to install sql server seperately from vs.net, it does not matter what order you install them in.
Do you currently have acces to a sql server, ...
April 21, 2008 at 10:12 am
check the link, according to the diagram they can.
There is no black dot this means that they can be run at the same time.
April 21, 2008 at 5:21 am
try this;
Declare @Keywords varchar(50)
set @Keywords = 'YourString'
SELECT *
FROM Product
WHERE...
April 21, 2008 at 4:17 am
though i would usually look for another solution, dealing with third party consumers of data some times takes compromise
try this code
update
set [payee] = replace([payee],'''','`')
April 18, 2008 at 7:58 am
depends on the max lenght of them, for a lenght of 12 i would use
varchar(12)
April 18, 2008 at 4:54 am
Sorry I skimmed over that was expecting some graphics or something, sorry about that.
As Lynn said It looks like it is not making a match at all and the...
April 17, 2008 at 10:25 am
They look like really useful tools I will have to have a look at them a bit further, Maybe you should consider doing a bit more advertising..
April 17, 2008 at 10:08 am
Viewing 15 posts - 2,221 through 2,235 (of 2,267 total)