Viewing 14 posts - 1 through 14 (of 14 total)
You need to create a user defined function which will return the lastest date and Access Level.
Someting like
Select distinct User_Id, UserName, dbo.getmaxDate(User_Id), dbo.GetMaxAccessLevel(User_Id) From Users
Order by MaxDate desc
dbo.getmaxDate and...
October 6, 2008 at 11:33 am
try this
select LEFT(CONVERT(VARCHAR(8), GetDate(), 8), 5)
October 6, 2008 at 10:10 am
if you are not using Microsoft Indexing Service then stop it from the services panel
September 25, 2008 at 12:18 pm
Create a table with queries and conditions,
Loop through the cursor and match the condition with the condition value from the table and get the query
something like
declare c cursor for...
September 25, 2008 at 12:04 pm
I started the database with 200 tables and usually it happens when your system is in production more and more tables have to be created every month, i execute campaigns...
September 25, 2008 at 11:52 am
Due to security bcp is disabled on machines so you need to use SSIS packages.
Use script command and write code in VB
The example i have is to write in...
September 11, 2008 at 10:15 am
Due to security bcp is disabled so you need to use SSIS packages.
Use script command and write code in VB
The example i have is to write in excel from...
September 11, 2008 at 10:14 am
try this
INSERT INTO IMAGESTABLE
(CUSTOMER_ID,IMAGEFIELD)
SELECT 1000001, BulkColumn
FROM OPENROWSET(BULK N'\\SERVER\DOSCAN\Testing\10987553578387.tif', SINGLE_BLOB) AS Document
August 28, 2008 at 6:56 am
When specifing from cold fusion, the request time out is set by default. Timeout property can be implemented and value can be expanded to aviod timeout problems.
i was getting timeout...
August 27, 2008 at 9:25 am
as the server is the same then it will be a manual process.
So you have to give read only right for the producttion database and dbo rights for the test...
August 26, 2008 at 1:17 pm
i dont know if you can create 2 database with the same name on the same server. you can create the database with differnet name and use different sql user...
August 26, 2008 at 12:35 pm
i found the fix. i use \\servernameetwork_path and give appropriate permissions.
August 26, 2008 at 12:31 pm
did you solve the problem?
I am getting the same error. I am trying to open the file using OLEDB
August 26, 2008 at 12:06 pm
i suggest using the update command as an alternative to cursors.
UPDATE T_TEMP SET
...
August 19, 2008 at 9:30 am
Viewing 14 posts - 1 through 14 (of 14 total)