Viewing 15 posts - 9,931 through 9,945 (of 13,461 total)
this seems to be the same issue;
http://dis4ea.blogspot.com/2006/04/blank-message-box-when-starting-sql.html
looks like repairing the .NET 2.0 framework will fix the issue.
that post implied installing the 1.1 framework AFTER the 2.0 was already installed breaks...
February 24, 2010 at 10:13 am
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...
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...
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...
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...
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...
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...
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 *
...
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 ,...
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...
February 22, 2010 at 8:10 pm
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...
February 22, 2010 at 10:56 am
dheer (2/22/2010)
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
...
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,...
February 22, 2010 at 9:37 am
Viewing 15 posts - 9,931 through 9,945 (of 13,461 total)