Viewing 15 posts - 4,291 through 4,305 (of 7,187 total)
OK, start by making a backup now. It's fairly easy to get your server into single user mode - there's plenty of information out there on how to do...
October 26, 2012 at 9:04 am
Do you have a good backup you could restore from? That's the preferred solution.
John
October 26, 2012 at 8:45 am
Does it work if you cast it to another data type, the same way as you've already done for StartTime and ContainerStartTime, amongst others?
John
October 24, 2012 at 3:35 am
Does your SQL Server audit failed login attempts? If it does, what is written to the errorlog at the time of the login failures?
John
October 24, 2012 at 3:07 am
Jim
A vbs script isn't a SQL Server solution, so it's a little outside the scope of these forums. I think it would be simpler to create a batch file,...
October 23, 2012 at 1:35 am
You need to create a user for user_01 in the new database. See the CREATE USER topic in Books Online.
John
October 22, 2012 at 8:59 am
Your original requirement was a T-SQL query which, if I understand correctly, isn't going to work against an Oracle database. You'll need to go to an Oracle forum to...
October 19, 2012 at 7:47 am
Read about the SUBSTRING function or the LIKE operator. Either of those should give you what you require.
John
October 19, 2012 at 7:08 am
I take it you have a table called Status or something like that, to which the main table has a foreign key constraint? That table would contain values such...
October 19, 2012 at 5:43 am
New letter, new row:
INSERT INTO order_status (order_id,order_status, order_desc, letter)
VALUES
('025', 'Dispatched', 'Black tailored coat ','DPT notification'),
('025', 'Dispatched second notification', 'Black tailored coat ','DPT2 notification');
You may need to change your data types...
October 19, 2012 at 4:32 am
rot-717018 (10/19/2012)
Aresby (10/18/2012)... 'Windows XP has gotten easier...'. ...
As I wrote earlier, I'm not english nor am I american ... I'm luxembourgish/french.
What would be the correct formulation for the above...
October 19, 2012 at 1:43 am
If you want to release space on disk then you need to shrink the database. See DBCC SHRINKDATABASE. Beware, though - if your database is likely to grow...
October 19, 2012 at 1:33 am
That'll revoke the deny, but won't necessarily restore the permission. You'll need to do an explicit GRANT if the user doesn't have the permission through any other avenue.
John
October 18, 2012 at 8:05 am
Nobody has so far commented on the four distinct values in your column. In one of Gail's articles that you're about to read, it says this:
It usually works out...
October 18, 2012 at 7:53 am
Didn't we go through this yesterday?
John
October 17, 2012 at 7:53 am
Viewing 15 posts - 4,291 through 4,305 (of 7,187 total)