Viewing 15 posts - 1,906 through 1,920 (of 2,268 total)
If you have a look in the SQL server logs it should show the failed login with the error numbers to indicate why it failed (password, wrong user ...
October 1, 2008 at 11:39 am
I am not an expert on this, but from what I understand once you import the SSIS package into SQL server it is in a compiled form and the only...
October 1, 2008 at 11:36 am
You can use SSIS to do this.
though if your databsae is large then you are going to run into trouble exporting to excel 2003 as excel 2003 and earlier versions...
October 1, 2008 at 11:24 am
Is app1 a valid login/user for your database?
what are the error numbers your are getting with failed login?
October 1, 2008 at 10:11 am
use a datetime or smalldatetime column with GetDate() as the default value
October 1, 2008 at 9:52 am
shakti (10/1/2008)
I know how to create the triggers? but is it a suggested procedure? i feel that if the records...
October 1, 2008 at 8:42 am
If you need to have the data kept up to date from the four servers then you should be able to do this with transactional replication.
You can set up one...
October 1, 2008 at 6:28 am
There a lot of opurtunites for SQL developers/dbas in the UK and also a lot of BI positions are opening up, but like a lot of jobs they are...
September 30, 2008 at 9:17 am
I havent had any experience with this setup , but make sure that whatever they implement gets fully tested before going anywhere near your production system.
For our backups we use...
September 30, 2008 at 9:03 am
you can do this using the row_number() function;
SELECT Location, ProductID, Qty,
ROW_NUMBER() OVER (PARTITION BY Location ORDER BY Location, ProductID) AS NewOrder
FROM YOURTABLE
September 30, 2008 at 8:34 am
This is quite a big topic and will depened on who you talk too, but i think this video explains it all
September 30, 2008 at 5:12 am
torstentiedt (9/30/2008)
To guarentee read-only-access to tables via security rights could be a solution. But isn't there any solution implemented with the replication itself, which would be easier...
September 30, 2008 at 4:55 am
cuteprabakar (9/30/2008)
I am requesting you to help me to what is the ideal column to set the PRIMARY KEY and for indexing
Primary key will should probably be UserId, FileId,...
September 30, 2008 at 2:43 am
You can use SQL security to create a login/role that has only read access to the tables in your subscriber, and only give the account that you are running...
September 30, 2008 at 2:33 am
FNS (9/29/2008)
September 29, 2008 at 9:56 am
Viewing 15 posts - 1,906 through 1,920 (of 2,268 total)