Viewing 15 posts - 406 through 420 (of 1,186 total)
Another way to accomplish this (Don't know if you have the capability) is to connect the OLD production system to a DIFFERENT DOMAIN and ensure that the two are NOT...
April 21, 2005 at 5:21 am
Why not just use
SELECT (DATENAME(MONTH, DATE)+', '+ DATENAME(YEAR, DATE)) AS 'MONTH' FROM TABLE
April 21, 2005 at 5:15 am
IF the table is 2 columnar and you had something like Field1 = David Field2 = CIO all you would have needed to do is something like:
SELECT ISNULL(Field1, '') + ':...
April 20, 2005 at 12:26 pm
I hate to say this but Hunh??!?!?! Are you asking is it possible to restore a VB application with a SQL BACKUP/RESTORE?
April 20, 2005 at 6:35 am
I would check the job that drops/re-creates the tables and look at the permssions for the objects that are having the problem. It looks like your additional permissions was not...
April 19, 2005 at 4:46 pm
Try checking out SQL Compare. This software can look at DEV v TEST v Staging v Production tell you the changes and allows you to review them back fill, promote,...
April 19, 2005 at 4:43 pm
Can you check your gvEmailList and see if this is being populated? IF this is NULL or NOTHING THEN the RS would be NOTHING as well...
April 19, 2005 at 9:09 am
Can you please let us know what SET LINESIZE does so we can say yay/nay about the equivalent?
April 19, 2005 at 9:07 am
No. Using this option transfers the object(s) between server(s) or database(s). SQL does NOT convert from 1 object type to the other.
April 19, 2005 at 8:00 am
Another thing to add to what Remi stated is to CREATE your objects in order i.e. IF a VIEW depends on a TABLE to exist make sure that the CREATE TABLE...
April 19, 2005 at 7:58 am
I would also look at the Server network utility (can be found via Start > Programs > SQL) and see if TCP/IP is enabled or disabled.
If it is disabled move...
April 19, 2005 at 7:56 am
Is the database rebuilt nightly? Any jobs running nightly that affect permissions? Sounds like there is a script running that re-assigns permissions daily...
April 19, 2005 at 7:52 am
What timeframe is expected to report the changes to the table(s)? If it is "real" time than you will need to have your GUI constantly running "seeing" if there are...
April 18, 2005 at 6:25 am
Try using SET DATEFORMAT dmy
The problem you are facing is the REGIONAL settings on your SQL server are probably MM/DD/YYYY and you are passing in DD/MM/YYYY while you know that...
April 15, 2005 at 6:18 am
Access inherently "grabs" ALL tables and views that the user has SELECT permission and displays them ALL under the "TABLE" guise....
April 14, 2005 at 1:49 pm
Viewing 15 posts - 406 through 420 (of 1,186 total)