Viewing 15 posts - 9,931 through 9,945 (of 13,460 total)
TKE402 did you get a linked server to work yet? I've played with SQLite a little bit now; I've used this .NET provider for SQLite[/url] in VS 2005/2008 with no...
Lowell
February 24, 2010 at 9:00 am
thank you Jayant, I'm glad i could point you in the right direction with your project.
feedback like yours is exactly why I like to help here; knowing I got to...
Lowell
February 24, 2010 at 8:25 am
Here's what I always do, it might help you out as well.
I create a new regular user in AD or on the local machine called SQLAdmin. (ie yourdomain\SQLAdmin)
i make that...
Lowell
February 23, 2010 at 12:03 pm
replace your static column "Holidays with the calculation included in my example,a dn you get the results you wanted, without the whole update of my db every five seconds:
Create Table...
Lowell
February 23, 2010 at 10:53 am
yeah this is a very common issue; pretty sure the issue is permission to get to the share; especially with the error access denied.
change the login used to run the...
Lowell
February 23, 2010 at 9:07 am
pretty sure the issue is this:
\\<servername>\medlog\sql_apps\afmsql\daasc_reb\txt\work_reb_ftp1.txt
when you jump to xp_cmdshell, it doesn't matter what YOUR credentials are; sql server uses the credentials that is running the sql service, which...
Lowell
February 23, 2010 at 8:55 am
Jayant i think they are refering to the OPENROWSET command; you can substitute SELECT * FROM YOURTABLE where i'm using EXEC dbo.sp_Who for the command
SELECT *
...
Lowell
February 23, 2010 at 8:31 am
Yep I'm still sure you can calculate the accrued holidays (vacationtime?) with a view instead.
dunno your math, you will need to be very specific: give us the create table ,...
Lowell
February 23, 2010 at 6:46 am
i agree with john.arnott; if we know the reason, we can help;
for example, why not use a view?
you can easily create a view or function that returns a number, based...
Lowell
February 22, 2010 at 8:10 pm
blocked at work, is that the "little bobby tables" comic?
Lowell
February 22, 2010 at 11:17 am
Adan, you might need to switch to dynamic SQL to do that I think; you need to get the data into a comma delomited list for the IN() statement to...
Lowell
February 22, 2010 at 10:56 am
dheer (2/22/2010)
Lowell
February 22, 2010 at 9:50 am
maybe something like this as a prototype?
trying to join the two linked tables together.
SELECT
o.ordernumber ,
o.status,
o1.orderdesc,
l.location
FROM orders o
INNER JOIN (SELECT
...
Lowell
February 22, 2010 at 9:45 am
Linked servers are slow to join against.
here's the reason:
you are joining LINKEDSERVER.ORDERS.dbo.orders to your table.
the result is that the entire table LINKEDSERVER.ORDERS.dbo.orders gets pulled into the temp database,...
Lowell
February 22, 2010 at 9:37 am
SQLRecon[/url] is free, and uses a number of different methods to find all the SQL servers on your network.
i've used it a lot of times, it does a lot more...
Lowell
February 22, 2010 at 7:38 am
Viewing 15 posts - 9,931 through 9,945 (of 13,460 total)