Viewing 15 posts - 1,081 through 1,095 (of 1,346 total)
You should not connect directly between the mobile devices and the sql server over the internet.
If you did that it would expose sql server to the internet, which is not...
August 17, 2005 at 8:57 am
Other than following Remi's normalization advice,
This is how you would do it as is.
Create table #dataTable (caseNo int, Stage1Status int, Stage2Status int, Stage3Status int)
insert into #datatable(CaseNo, Stage1Status, Stage2Status, Stage3Status)
values(1, 2,...
August 16, 2005 at 2:51 pm
I don't think you can enable it thru the logs.
But you can set a profiler trace, only showing Security audit information. and it will tell you the host machine etc.
August 16, 2005 at 9:14 am
"I'm having a problem with a form that is completely blank unless there is data in it."
Well my guess is that if there's no data in it, it must...
August 15, 2005 at 10:16 am
If your designing a new system, I would suggest having your company (no offense to you) get a True DBA, to get the application off the ground on the right...
August 15, 2005 at 10:13 am
I'm not sure mmc.exe, and mmcndmgr.dll are more part of windows than sql server.
EM uses the mmc node to manage sql server. It appears...
August 12, 2005 at 2:14 pm
This is an unusual request indeed.
If you don't mind can you explain what you are trying to do?
What is the goal of writing a...
August 12, 2005 at 9:28 am
Well it depends on how reliable the data is.
I've worked on systems where it was spec'd as a numeric, only to find out 3 weeks into production they passed alpha's.
So...
August 12, 2005 at 9:22 am
Go to Administrative Tools Event Viewer, Click on application.
Are there any Application errors? if so click on it, and post the actual error message.
August 11, 2005 at 3:34 pm
when you have an error using dynamic sql try ouputting string to text so you can see the query that is being run
declare @sql varchar(1000), @x varchar(10)
set @x = 'field'
set...
August 11, 2005 at 3:30 pm
as indicated by the error message you can only install reporting services on the following versions
• SQL Server 2000 Standard Edition with SP3 or later4
• SQL Server 2000 Enterprise Edition...
August 11, 2005 at 3:25 pm
It seems like what you are looking for is a fuzzy search on top of an order by that is not supported.
you can try something like:
insert into #EmpAges (Name, Age)
select...
August 11, 2005 at 3:18 pm
You may just run thru and double check the attributes for the report.
Click the report, then click the properties tab. Then click the data sources link on the left. Make...
August 11, 2005 at 9:51 am
What command exactly are you executing, and what is the exact error message?
Unless you are messing around with the primary key, I don't think replication cares about indexes.
August 11, 2005 at 9:47 am
Viewing 15 posts - 1,081 through 1,095 (of 1,346 total)